One of the ptests keeps hanging on qemuriscv64. Until it is investigated, stop
it running for now. Also improve the debug output from the run-ptest script so
it is easier to see where things hang in future.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
cd $ptestdir/tests
tests=$(find . -name "test-*" ! -name "*.p")
for f in $tests; do
+ # Test hangs intermittently on qemurisc64 on autobuilder
+ if [ "$f" = "./unit/test-nested-aio-poll" -a `uname -m` = "riscv64" ]; then
+ continue
+ fi
+ echo "Running $f"
$f | sed '/^ok/ s/ok/PASS:/g'
done