1
0
Fork 0

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>
This commit is contained in:
Jonas Ådahl 2023-03-04 17:01:44 +01:00 committed by Marge Bot
parent 65ef0cb9e8
commit 8b42564763

View file

@ -441,14 +441,6 @@ if have_native_tests
'wayland-client-tests.c', 'wayland-client-tests.c',
], ],
}, },
{
'name': 'service-channel',
'suite': 'wayland',
'sources': [
'service-channel-tests.c',
wayland_test_utils,
],
},
{ {
'name': 'wayland-x11-interop', 'name': 'wayland-x11-interop',
'suite': 'wayland', 'suite': 'wayland',
@ -473,6 +465,18 @@ if have_native_tests
] ]
endif endif
# Miscellaneous tests
test_cases += [
{
'name': 'service-channel',
'suite': 'wayland',
'sources': [
'service-channel-tests.c',
wayland_test_utils,
],
},
]
foreach test_case: test_cases foreach test_case: test_cases
test_executable = executable('mutter-' + test_case['name'], test_executable = executable('mutter-' + test_case['name'],
sources: test_case['sources'], sources: test_case['sources'],