added my Recipes
This commit is contained in:
12
meta-openembedded/meta-oe/recipes-support/libcereal/files/run-ptest
Executable file
12
meta-openembedded/meta-oe/recipes-support/libcereal/files/run-ptest
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd tests
|
||||
for atest in test_* ; do
|
||||
rm -rf tests.log
|
||||
./${atest} > tests.log 2>&1
|
||||
if [ $? = 0 ] ; then
|
||||
echo "PASS: ${atest}"
|
||||
else
|
||||
echo "FAIL: ${atest}"
|
||||
fi
|
||||
done
|
||||
Reference in New Issue
Block a user