mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-13 17:39:57 +00:00
8917528948
# ./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
|