[PATCH] tests/functional: Don't try to run functional tests on Windows

Thomas Huth posted 1 patch 1 month, 3 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20260216103924.39493-1-thuth@redhat.com
Maintainers: Thomas Huth <thuth@redhat.com>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, "Daniel P. Berrangé" <berrange@redhat.com>
tests/functional/meson.build | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
[PATCH] tests/functional: Don't try to run functional tests on Windows
Posted by Thomas Huth 1 month, 3 weeks ago
From: Thomas Huth <thuth@redhat.com>

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>
---
 tests/functional/meson.build | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tests/functional/meson.build b/tests/functional/meson.build
index 725630d3082..ee58ab3a87b 100644
--- a/tests/functional/meson.build
+++ b/tests/functional/meson.build
@@ -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
 
-- 
2.53.0