From 8b4256476371c693ca2f3754e11a80fa591ef399 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Sat, 4 Mar 2023 17:01:44 +0100 Subject: [PATCH] tests/build: Move 'service-channel' test to a 'misc' section It only has a Wayland test, but might get Wayland unrelated things in the future, so move it away into a "misc" section. Part-of: --- src/tests/meson.build | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/tests/meson.build b/src/tests/meson.build index 6e94eb751..060ea50b2 100644 --- a/src/tests/meson.build +++ b/src/tests/meson.build @@ -441,14 +441,6 @@ if have_native_tests 'wayland-client-tests.c', ], }, - { - 'name': 'service-channel', - 'suite': 'wayland', - 'sources': [ - 'service-channel-tests.c', - wayland_test_utils, - ], - }, { 'name': 'wayland-x11-interop', 'suite': 'wayland', @@ -473,6 +465,18 @@ if have_native_tests ] endif + # Miscellaneous tests + test_cases += [ + { + 'name': 'service-channel', + 'suite': 'wayland', + 'sources': [ + 'service-channel-tests.c', + wayland_test_utils, + ], + }, + ] + foreach test_case: test_cases test_executable = executable('mutter-' + test_case['name'], sources: test_case['sources'],