mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Add recipe for libnet-ssleay-perl. Inherit ptest to enable build -ptest sub-package and add file 'run-ptest'. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
17 lines
334 B
Bash
17 lines
334 B
Bash
#!/bin/sh
|
|
|
|
for case in `find t -type f -name '*.t'`; do
|
|
perl $case >$case.output 2>&1
|
|
ret=$?
|
|
cat $case.output
|
|
if [ $ret -ne 0 ]; then
|
|
echo "FAIL: ${case%.t}"
|
|
elif grep -i 'SKIP' $case.output; then
|
|
echo "SKIP: ${case%.t}"
|
|
else
|
|
echo "PASS: ${case%.t}"
|
|
fi
|
|
|
|
rm -f $case.output
|
|
done
|