qemu: Disable hanging ptest for riscv64

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.

(From OE-Core rev: bf6a6ba96757471048044290318e32048040dae5)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2025-06-02 14:29:11 +01:00
parent a2f77bbe0f
commit 952d93e89f

View File

@ -9,5 +9,10 @@ export SRC_PATH=$ptestdir
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