]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/functional: Don't try to run functional tests on Windows
authorThomas Huth <thuth@redhat.com>
Mon, 16 Feb 2026 10:39:24 +0000 (11:39 +0100)
committerThomas Huth <thuth@redhat.com>
Tue, 10 Mar 2026 05:12:17 +0000 (06:12 +0100)
They just don't work there yet, so don't try to run them there
(these need some development work from a Windows wizard first).

Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20260216103924.39493-1-thuth@redhat.com>

tests/functional/meson.build

index b979cff2b9750e6f9c81f032d5fb3978d476af51..9bec5a07516d1e50d8a91ef29d30e316bf5fd311 100644 (file)
@@ -4,8 +4,9 @@
 # (e.g. tests that fetch assets from the internet) should be put into
 # the 'thorough' category instead.
 
-# Most tests run too slow with TCI enabled, so skip the functional tests there
-if get_option('tcg_interpreter')
+# Most tests run too slow with TCI enabled, and they haven't been adapted
+# to Windows yet, so skip the functional tests in these environments
+if get_option('tcg_interpreter') or host_os == 'windows'
   subdir_done()
 endif