summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rwxr-xr-xcommon/scripts/kselftest-runner.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/scripts/kselftest-runner.sh b/common/scripts/kselftest-runner.sh
index 7318db5..3cfd0db 100755
--- a/common/scripts/kselftest-runner.sh
+++ b/common/scripts/kselftest-runner.sh
@@ -13,6 +13,8 @@ if [ -n "`grep \"skip\" ${LOG}`" ]; then
echo "${TEST_NAME}: [SKIP]";
elif [ -z "`grep \"SKIP\|FAIL\" ${LOG}`" ]; then
echo "${TEST_NAME}: [PASS]"
+elif [ -n "`grep \"FAIL\" ${LOG}`" ]; then
+ echo "${TEST_NAME}: [FAIL]"
fi
while read l;