mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-14 04:01:49 +00:00
There is no PASS or FAIL related status report before, so improve the ptest output to print the status. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
9 lines
133 B
Bash
9 lines
133 B
Bash
#!/bin/sh
|
|
|
|
python3 $(dirname $0)/team_basic_test.py
|
|
if [ $? -eq 0 ] ; then
|
|
echo "PASS: libteam"
|
|
else
|
|
echo "FAIL: libteam"
|
|
fi
|