From 4cf6b7140f97971d0deab9c37aaf56fedb2f2429 Mon Sep 17 00:00:00 2001 From: Gyorgy Sarvari Date: Thu, 6 Nov 2025 09:04:37 +0100 Subject: [PATCH] inotify-tools: add PASS/FAIL status to run-ptest script Signed-off-by: Gyorgy Sarvari --- meta-oe/recipes-support/inotify-tools/inotify-tools/run-ptest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-support/inotify-tools/inotify-tools/run-ptest b/meta-oe/recipes-support/inotify-tools/inotify-tools/run-ptest index c45b75e387..d0ccfd7b67 100644 --- a/meta-oe/recipes-support/inotify-tools/inotify-tools/run-ptest +++ b/meta-oe/recipes-support/inotify-tools/inotify-tools/run-ptest @@ -7,9 +7,9 @@ status=$? # Exit with the test’s result code if [ $status -eq 0 ]; then - echo "All tests passed successfully." + echo "PASS: All tests passed successfully." else - echo "Some tests failed. See output above for details." + echo "FAIL: Some tests failed. See output above for details." fi exit $status