From a891c9079830f0a0309feb40f31af1f7bab73ec6 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sun, 20 Oct 2024 04:58:54 +0200 Subject: [PATCH] win32: Use right name for GIO_USE_VOLUME_MONITOR in CI --- testsuite/meson.build | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/testsuite/meson.build b/testsuite/meson.build index e4033e7c10..8fb7a99362 100644 --- a/testsuite/meson.build +++ b/testsuite/meson.build @@ -9,7 +9,6 @@ if catch.found() endif common_env = [ - 'GIO_USE_VOLUME_MONITOR=unix', 'GIO_USE_VFS=local', 'GSETTINGS_BACKEND=memory', 'GTK_CSD=1', @@ -20,6 +19,13 @@ common_env = [ ] exclude_unstable = ['flaky', 'failing'] +if os_win32 + common_env += [ 'GIO_USE_VOLUME_MONITOR=win32' ] +else + common_env += [ 'GIO_USE_VOLUME_MONITOR=unix' ] +endif + + setups = [ { 'backend': 'x11', 'if': x11_enabled, }, { 'backend': 'wayland', 'if': wayland_enabled, 'is_default': true, },