From e9d9edde824df1229bc5539610b98c98013e93aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Sat, 22 Jan 2022 02:32:28 +0400 Subject: [PATCH] tests: skip appmonitor test on win32 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc-André Lureau --- gio/tests/appmonitor.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gio/tests/appmonitor.c b/gio/tests/appmonitor.c index 725d91e5c..9db8c4dea 100644 --- a/gio/tests/appmonitor.c +++ b/gio/tests/appmonitor.c @@ -78,6 +78,11 @@ test_app_monitor (Fixture *fixture, GAppInfoMonitor *monitor; GMainLoop *loop; +#ifdef G_OS_WIN32 + g_test_skip (".desktop monitor on win32"); + return; +#endif + app_path = g_build_filename (fixture->applications_dir, "app.desktop", NULL); /* FIXME: this shouldn't be required */