#!/bin/sh
# run-ptest for inotify-tools

# Run the test binary and show output
./test
status=$?

# Exit with the test’s result code
if [ $status -eq 0 ]; then
    echo "PASS: All tests passed successfully."
else
    echo "FAIL: Some tests failed. See output above for details."
fi

exit $status
