[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 9/9] tests/qtest/migration-test: Fix the check for a successful ru
From: |
Fabiano Rosas |
Subject: |
[PULL 9/9] tests/qtest/migration-test: Fix the check for a successful run of analyze-migration.py |
Date: |
Wed, 22 May 2024 19:20:34 -0300 |
From: Thomas Huth <thuth@redhat.com>
If analyze-migration.py cannot be run or crashes, the error is currently
ignored since the code only checks for nonzero values in case the child
exited properly. For example, if you run the test with a non-existing
Python interpreter, it still succeeds:
$ PYTHON=wrongpython QTEST_QEMU_BINARY=./qemu-system-x86_64
tests/qtest/migration-test
...
# Running /x86_64/migration/analyze-script
# Using machine type: pc-q35-9.1
# starting QEMU: exec ./qemu-system-x86_64 -qtest unix:/tmp/qtest-417639.sock
-qtest-log /dev/null -chardev socket,path=/tmp/qtest-417639.qmp,id=char0 -mon
chardev=char0,mode=control -display none -audio none -accel kvm -accel tcg
-machine pc-q35-9.1, -name source,debug-threads=on -m 150M -serial
file:/tmp/migration-test-XPLUN2/src_serial -drive
if=none,id=d0,file=/tmp/migration-test-XPLUN2/bootsect,format=raw -device
ide-hd,drive=d0,secs=1,cyls=1,heads=1 -uuid
11111111-1111-1111-1111-111111111111 -accel qtest
# starting QEMU: exec ./qemu-system-x86_64 -qtest unix:/tmp/qtest-417639.sock
-qtest-log /dev/null -chardev socket,path=/tmp/qtest-417639.qmp,id=char0 -mon
chardev=char0,mode=control -display none -audio none -accel kvm -accel tcg
-machine pc-q35-9.1, -name target,debug-threads=on -m 150M -serial
file:/tmp/migration-test-XPLUN2/dest_serial -incoming tcp:127.0.0.1:0 -drive
if=none,id=d0,file=/tmp/migration-test-XPLUN2/bootsect,format=raw -device
ide-hd,drive=d0,secs=1,cyls=1,heads=1 -accel qtest
**
ERROR:../../devel/qemu/tests/qtest/migration-test.c:1603:test_analyze_script:
code should not be reached
migration-test: ../../devel/qemu/tests/qtest/libqtest.c:240: qtest_wait_qemu:
Assertion `pid == s->qemu_pid' failed.
migration-test: ../../devel/qemu/tests/qtest/libqtest.c:240: qtest_wait_qemu:
Assertion `pid == s->qemu_pid' failed.
ok 2 /x86_64/migration/analyze-script
...
Let's better fail the test in case the child did not exit properly, too.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>
---
tests/qtest/migration-test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qtest/migration-test.c b/tests/qtest/migration-test.c
index 5b4eca2b20..b7e3406471 100644
--- a/tests/qtest/migration-test.c
+++ b/tests/qtest/migration-test.c
@@ -1604,7 +1604,7 @@ static void test_analyze_script(void)
}
g_assert(waitpid(pid, &wstatus, 0) == pid);
- if (WIFEXITED(wstatus) && WEXITSTATUS(wstatus) != 0) {
+ if (!WIFEXITED(wstatus) || WEXITSTATUS(wstatus) != 0) {
g_test_message("Failed to analyze the migration stream");
g_test_fail();
}
--
2.35.3
- [PULL 0/9] Migration patches for 2024-05-22, Fabiano Rosas, 2024/05/22
- [PULL 1/9] migration/colo: Minor fix for colo error message, Fabiano Rosas, 2024/05/22
- [PULL 2/9] migration/colo: make colo_incoming_co() return void, Fabiano Rosas, 2024/05/22
- [PULL 3/9] migration/colo: Tidy up bql_unlock() around bdrv_activate_all(), Fabiano Rosas, 2024/05/22
- [PULL 4/9] migration: add "exists" info to load-state-field trace, Fabiano Rosas, 2024/05/22
- [PULL 5/9] migration: fix a typo, Fabiano Rosas, 2024/05/22
- [PULL 6/9] virtio-gpu: fix v2 migration, Fabiano Rosas, 2024/05/22
- [PULL 7/9] hw/core/machine: move compatibility flags for VirtIO-net USO to machine 8.1, Fabiano Rosas, 2024/05/22
- [PULL 8/9] tests/qtest/migration-test: Run some basic tests on s390x and ppc64 with TCG, too, Fabiano Rosas, 2024/05/22
- [PULL 9/9] tests/qtest/migration-test: Fix the check for a successful run of analyze-migration.py,
Fabiano Rosas <=
- Re: [PULL 0/9] Migration patches for 2024-05-22, Richard Henderson, 2024/05/22