mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
tomlplusplus: Add ptest support
# ./run-ptest PASS: tomlplusplus_odr_test PASS: tomlplusplus_tests Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd tests
|
||||
for atest in tomlplusplus_* ; 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