Message ID | 20250602133144.3521798-2-richard.purdie@linuxfoundation.org |
---|---|
State | Accepted, archived |
Commit | bf6a6ba96757471048044290318e32048040dae5 |
Headers | show |
Series | [1/2] qemu: Upgrade 10.0.0 -> 10.0.2 | expand |
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
One of the ptests keeps hanging on qemuriscv64. Until it is investigated, stop it runnig 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 | 5 +++++ 1 file changed, 5 insertions(+)