Mingli Yu d936e93846 libteam: improve the ptest output
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>
2021-12-21 18:49:37 -08:00

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