summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-support/inotify-tools/files/run-ptest2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/inotify-tools/files/run-ptest b/meta-oe/recipes-support/inotify-tools/files/run-ptest
index 1bd51248d8..ac3d7e717e 100644
--- a/meta-oe/recipes-support/inotify-tools/files/run-ptest
+++ b/meta-oe/recipes-support/inotify-tools/files/run-ptest
@@ -13,9 +13,11 @@ echo "$output"
13# Evaluate result based on exit code 13# Evaluate result based on exit code
14if [ $status -eq 0 ]; then 14if [ $status -eq 0 ]; then
15 echo "All tests passed successfully." 15 echo "All tests passed successfully."
16 echo "PASS: inotify-tools"
16 exit 0 17 exit 0
17else 18else
18 echo "Test program exited with status $status." 19 echo "Test program exited with status $status."
19 echo "Some tests may have failed. See output above for details." 20 echo "Some tests may have failed. See output above for details."
21 echo "FAIL: inotify-tools"
20 exit 1 22 exit 1
21fi 23fi