From 207b9bb3c0a582b830218fd1b6e8760684adbc48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Thu, 24 Nov 2022 16:29:39 +0100 Subject: [PATCH] tests: Fail on warnings too Getting warnings are always bad and means something is broken, we shouldn't pass the test suite with them. Part-of: --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index 739b74cd0..c2640c17e 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -49,7 +49,7 @@ libgvc_path = fs.parent(libgvc.get_variable('libgvc').full_path()) background_file = files(join_paths('data', 'background.png')) perf_testenv = testenv -perf_testenv.set('G_DEBUG', 'fatal-criticals') +perf_testenv.set('G_DEBUG', 'fatal-warnings') perf_testenv.set('G_MESSAGES_DEBUG', 'GNOME Shell') perf_testenv.set('GNOME_SHELL_DATADIR', data_builddir) perf_testenv.set('GNOME_SHELL_BUILDDIR', src_builddir)