mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-13 02:22:44 +00:00
# ./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>
13 lines
212 B
Bash
Executable File
13 lines
212 B
Bash
Executable File
#!/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
|