mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00
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:
parent
a2f77bbe0f
commit
952d93e89f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user