linuxOS_PX30_CAR/yocto/poky/meta/recipes-devtools/perl/libmodule-build-perl/run-ptest

15 lines
281 B
Plaintext
Raw Normal View History

2026-01-20 05:50:57 +00:00
#!/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