]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/qtest: Do not run lsi53c895a test if device is not present
authorFabiano Rosas <farosas@suse.de>
Wed, 8 Feb 2023 19:46:50 +0000 (16:46 -0300)
committerMichael Tokarev <mjt@tls.msk.ru>
Thu, 18 Sep 2025 08:04:46 +0000 (11:04 +0300)
The tests are built once for all the targets, so as long as one QEMU
binary is built with CONFIG_LSI_SCSI_PCI=y, this test will
run. However some binaries might not include the device. So check this
again in runtime.

Signed-off-by: Fabiano Rosas <farosas@suse.de>
Message-Id: <20230208194700.11035-3-farosas@suse.de>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
(cherry picked from commit dee66bc9691a0d5e8337c24b5cf303f46293df76)
(Mjt: pick this trivial focused fix up for 7.2.x so that subsequent change(s) in this area apply cleanly)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
tests/qtest/fuzz-lsi53c895a-test.c

index 9b007def2677062fe4acaaae066ad894d37c713a..8afbfdd2748ed1ab53d964be7835fb0aa7c3241a 100644 (file)
@@ -142,6 +142,10 @@ static void test_lsi_do_dma_empty_queue(void)
 
 int main(int argc, char **argv)
 {
+    if (!qtest_has_device("lsi53c895a")) {
+        return 0;
+    }
+
     g_test_init(&argc, &argv, NULL);
 
     qtest_add_func("fuzz/lsi53c895a/lsi_do_dma_empty_queue",