aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/mcelog/mcelog/run-ptest
blob: 320240f27621d93b5377b725debf42424222950b (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

make -C tests test | sed -e '/\[PASS\]/ s/^/PASS: /g' \
                         -e '/\[FAIL\]/ s/^/FAIL: /g' \
                         -e '/\[IGNORE\]/ s/^/SKIP: /g' \
                         -e 's/IGNORE:/SKIP:/' \
                         -e 's/: \[PASS\]//' \
                         -e 's/: \[FAIL\]//' \
                         -e 's/: \[IGNORE\]//'