]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
qemu: Disable hanging ptest for riscv64
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 2 Jun 2025 13:29:11 +0000 (14:29 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 3 Jun 2025 07:05:28 +0000 (08:05 +0100)
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>
meta/recipes-devtools/qemu/qemu/run-ptest

index f9a4e8fb2b556f210b32b95ae0bd1a6adc2b728c..1157b48855d22c839bca3512a8f6e75b874f60e4 100644 (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