mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
7fe87bea09
Signed-off-by: Xiangyu Chen <xiangyu.chen@eng.windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
17 lines
221 B
Bash
Executable File
17 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
|
|
num_fail=0
|
|
|
|
for test in tests/check*
|
|
do
|
|
./"$test" \
|
|
&& echo "PASS: $test" \
|
|
|| {
|
|
echo "FAIL: $test"
|
|
num_fail=$(( ${num_fail} + 1))
|
|
}
|
|
|
|
done
|
|
|
|
exit $num_fail
|