summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Ã…dahl <jadahl@gmail.com>2023-03-04 17:01:44 +0100
committerMarge Bot <marge-bot@gnome.org>2023-03-04 20:56:40 +0000
commit8b4256476371c693ca2f3754e11a80fa591ef399 (patch)
treefaa08719ce0feb5830433e8f2b1bd44ec66c8a46
parent65ef0cb9e86d70c61bec2a603f280fcadb951f48 (diff)
downloadmutter-8b4256476371c693ca2f3754e11a80fa591ef399.tar.gz
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: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2892>
-rw-r--r--src/tests/meson.build20
1 files 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
@@ -442,14 +442,6 @@ if have_native_tests
],
},
{
- 'name': 'service-channel',
- 'suite': 'wayland',
- 'sources': [
- 'service-channel-tests.c',
- wayland_test_utils,
- ],
- },
- {
'name': 'wayland-x11-interop',
'suite': 'wayland',
'sources': [
@@ -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'],