From: Richard Purdie Date: Mon, 2 Jun 2025 13:29:11 +0000 (+0100) Subject: qemu: Disable hanging ptest for riscv64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bf6a6ba96757471048044290318e32048040dae5;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/qemu/qemu/run-ptest b/meta/recipes-devtools/qemu/qemu/run-ptest index f9a4e8fb2b5..1157b48855d 100644 --- a/meta/recipes-devtools/qemu/qemu/run-ptest +++ b/meta/recipes-devtools/qemu/qemu/run-ptest @@ -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