From 11bc239e5ffc65d7761e2e3ed0c274b93e2fae5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 18 Feb 2025 14:31:20 +0100 Subject: [PATCH] st: Rename styling test Spaces in the name make it harder to run the test individually, even with `meson-test` fixed to handle spaces. Pick a name without spaces, and while at it, assign a suite. Part-of: --- src/st/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/st/meson.build b/src/st/meson.build index 72a354cf8..5279455d8 100644 --- a/src/st/meson.build +++ b/src/st/meson.build @@ -221,7 +221,8 @@ if get_option('tests') and have_x11_client link_with: libst ) - test('CSS styling support', test_theme, + test('css-styling', test_theme, + suite: 'st', workdir: meson.current_source_dir(), ) endif