From 4a77c42ed7e4543a25739d3a71c2b2e69f2b25a2 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Wed, 1 Jul 2026 05:54:01 +0200 Subject: [PATCH] Remove redundant labels from tests It's possible to filter tests by name (`-R`) --- test/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index ad2150e4..d7a76da7 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -30,7 +30,7 @@ foreach(component "asm" "link" "fix" "gfx") WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/${component}") set_tests_properties("rgb${component}" PROPERTIES REQUIRED_FILES "$" PROCESSORS 1 - LABELS "rgb${component};internal;free") + LABELS "internal;free") endforeach() set_tests_properties(rgbgfx PROPERTIES REQUIRED_FILES "$;$;$") @@ -70,7 +70,7 @@ foreach(cfg_file IN LISTS ext_projects) WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}") set_tests_properties(${project} PROPERTIES DEPENDS "rgbasm;rgblink;rgbfix;rgbgfx" # Only attempt external tests after all individual tool tests. PROCESSORS 4 - LABELS "external;${project};${freedom}" + LABELS "external;${freedom}" FIXTURES_REQUIRED "${freedom}-repos") endforeach()