mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
63c1a252f2
Particularly remove a broken detection of skipped tests (which was marking tests that actually passed), and install additional artefacts needed for testing. (From OE-Core rev: dbbce0918617c21d0e43e9727d38372c22dff3dc) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
281 B
Bash
15 lines
281 B
Bash
#!/bin/sh
|
|
|
|
for case in `find t -type f -name '*.t'`; do
|
|
perl -I inc -I blib -Mblib $case >$case.output 2>&1
|
|
ret=$?
|
|
cat $case.output
|
|
if [ $ret -ne 0 ]; then
|
|
echo "FAIL: ${case%.t}"
|
|
else
|
|
echo "PASS: ${case%.t}"
|
|
fi
|
|
|
|
rm -f $case.output
|
|
done
|