mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 10:13:03 +01:00
Sed expression may miss some failures, and | obscures the non-zero return code which would otherwise indicate them. (From OE-Core rev: 2fbba38df89fd54ef3a048ba5d8d31fff4a7518c) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
183 B
183 B
#!/bin/sh { cd t && PERL_BUILD_PACKAGING=1 ./TEST || echo "FAIL: perl" ; } | sed -u -e 's|(.) . ok$|PASS: \1|' -e 's|(.) . skipped|SKIP: \1|' -e 's|(.) .(.)|FAIL: \1|'