From db6a116d49a9f7231418d9a3a0408e27208b9b3d Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 16 Apr 2023 20:07:13 +0200 Subject: [PATCH] Try harder to fix focus tests The focus test now asserts that its window is active. So we should not run them in parallel with other tests, since those might steal the focus. --- testsuite/gtk/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/testsuite/gtk/meson.build b/testsuite/gtk/meson.build index d8a2e17e2c..2c9fd57b1d 100644 --- a/testsuite/gtk/meson.build +++ b/testsuite/gtk/meson.build @@ -262,6 +262,7 @@ foreach test : focus_chain_tests join_paths(meson.current_source_dir(), 'focus-chain', test[0] + '.ui'), join_paths(meson.current_source_dir(), 'focus-chain', test[0] + '.' + test[1]), ], + is_parallel: false, env: test_env, suite: [ 'gtk', 'focus' ], )