Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
stefanberger
/
openbmc
/
6e2cf34d2d87bb59e186f08ce3a840eb572e618b
/
.
/
poky
/
meta
/
recipes-support
/
libnl
/
files
/
run-ptest
blob: e5c9eb0a3289e16957afead980ffdc72f423b666 [
file
] [
log
] [
blame
]
#!/bin/sh
num_fail
=
0
for
test
in
check
*
do
./
"$test"
\
&&
echo
"PASS: $test"
\
||
{
echo
"FAIL: $test"
num_fail
=
$
((
$
{
num_fail
}
+
1
))
}
done
exit $num_fail