File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -66,14 +66,14 @@ string(CONCAT LL_LINE_REGEX
66
66
string (REGEX MATCHALL "[^\n ]+\n " discovered_test_lines "${discovered_tests} " )
67
67
if (TESTS_DETAILED )
68
68
foreach (line IN LISTS discovered_test_lines )
69
- string (REGEX MATCH "${LL_LINE_REGEX} " __ign "${line} " )
69
+ string (REGEX MATCH "${LL_LINE_REGEX} " __unused "${line} " )
70
70
set (test_name "${CMAKE_MATCH_1} .${CMAKE_MATCH_2} " )
71
71
set (test_location "${CMAKE_MATCH_3} :${CMAKE_MATCH_4} " )
72
72
add_test_to_script ("${test_name} " "${test_location} " -st )
73
73
endforeach ()
74
74
else ()
75
75
foreach (line IN LISTS discovered_test_lines )
76
- string (REGEX MATCH "${LL_LINE_REGEX} " __ign "${line} " )
76
+ string (REGEX MATCH "${LL_LINE_REGEX} " __unused "${line} " )
77
77
set (test_name "${CMAKE_MATCH_1} " )
78
78
set (test_file "${CMAKE_MATCH_3} " )
79
79
set (test_line "${CMAKE_MATCH_4} " )
You can’t perform that action at this time.
0 commit comments