Sign in
◑
Theme
gbmc
/
openbmc
/
ba2e44f1f988ddcb66f13c38330c2d7476d80906
/
.
/
upstream-layers
/
meta-openembedded
/
meta-oe
/
recipes-devtools
/
tomlplusplus
/
files
/
run-ptest
blob: 4f682c5eb2cfb18c4ecda347409fdfa92f40011c [
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