| Message ID | 20251106080438.1617193-1-skandigraun@gmail.com |
|---|---|
| State | New |
| Headers | show |
| Series | [meta-oe,kirkstone] inotify-tools: add PASS/FAIL status to run-ptest script | expand |
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
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> --- meta-oe/recipes-support/inotify-tools/inotify-tools/run-ptest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)