diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-06-02 14:29:11 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-06-03 08:05:30 +0100 |
commit | 952d93e89f440caa8cc5d05464317f39b57a1204 (patch) | |
tree | 528be311076f398d579b5beb8df37e2e2a329324 | |
parent | a2f77bbe0fd564e0b95df15c27f2c6a3b15c7be7 (diff) | |
download | poky-952d93e89f440caa8cc5d05464317f39b57a1204.tar.gz |
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>
-rw-r--r-- | meta/recipes-devtools/qemu/qemu/run-ptest | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu/run-ptest b/meta/recipes-devtools/qemu/qemu/run-ptest index f9a4e8fb2b..1157b48855 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 | |||
9 | cd $ptestdir/tests | 9 | cd $ptestdir/tests |
10 | tests=$(find . -name "test-*" ! -name "*.p") | 10 | tests=$(find . -name "test-*" ! -name "*.p") |
11 | for f in $tests; do | 11 | for f in $tests; do |
12 | # Test hangs intermittently on qemurisc64 on autobuilder | ||
13 | if [ "$f" = "./unit/test-nested-aio-poll" -a `uname -m` = "riscv64" ]; then | ||
14 | continue | ||
15 | fi | ||
16 | echo "Running $f" | ||
12 | $f | sed '/^ok/ s/ok/PASS:/g' | 17 | $f | sed '/^ok/ s/ok/PASS:/g' |
13 | done | 18 | done |