From 78e81c6390ab5c8585c33d7ed4b0d11372951406 Mon Sep 17 00:00:00 2001 From: Mingli Yu Date: Thu, 6 Nov 2025 11:27:24 +0800 Subject: [PATCH] inotify-tools: Unify the ptest output Make the ptest output in the format [1] used by Automake like result: testname [1] https://docs.yoctoproject.org/dev/test-manual/ptest.html#testing-packages-with-ptest Signed-off-by: Mingli Yu Signed-off-by: Khem Raj --- meta-oe/recipes-support/inotify-tools/files/run-ptest | 2 ++ 1 file changed, 2 insertions(+) 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" # Evaluate result based on exit code if [ $status -eq 0 ]; then echo "All tests passed successfully." + echo "PASS: inotify-tools" exit 0 else echo "Test program exited with status $status." echo "Some tests may have failed. See output above for details." + echo "FAIL: inotify-tools" exit 1 fi