inotify-tools: add PASS/FAIL status to run-ptest script

Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
This commit is contained in:
Gyorgy Sarvari 2025-11-06 09:04:37 +01:00
parent c3c873d0dc
commit 4cf6b7140f

View File

@ -7,9 +7,9 @@ status=$?
# Exit with the tests 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