From 18ea492daf273f12184ee2e3d2ed0b24dcae7714 Mon Sep 17 00:00:00 2001 From: Robert Mader Date: Fri, 3 Mar 2023 16:30:31 +0100 Subject: [PATCH] tests/build: Order Wayland tests alphabetically And ensure they all start with "wayland-" for consistency. Part-of: --- src/tests/meson.build | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/src/tests/meson.build b/src/tests/meson.build index 060ea50b2..3dd8a59b9 100644 --- a/src/tests/meson.build +++ b/src/tests/meson.build @@ -416,14 +416,10 @@ if have_native_tests # Wayland tests test_cases += [ { - 'name': 'wayland-unit', + 'name': 'wayland-client-tests', 'suite': 'wayland', 'sources': [ - 'wayland-unit-tests.c', - dummy_client_header, - dummy_server_header, - dummy_protocol_code, - wayland_test_utils, + 'wayland-client-tests.c', ], }, { @@ -441,6 +437,17 @@ if have_native_tests 'wayland-client-tests.c', ], }, + { + 'name': 'wayland-unit', + 'suite': 'wayland', + 'sources': [ + 'wayland-unit-tests.c', + dummy_client_header, + dummy_server_header, + dummy_protocol_code, + wayland_test_utils, + ], + }, { 'name': 'wayland-x11-interop', 'suite': 'wayland',