Skip to content

Commit 858ad77

Browse files
committed
use -R default instead of -R=-default for ctest
- the change from 821ba2b breaks the target for older ctest versions, i.e., the regex doesn't get applied and all or many many more tests than "*-default*" are run - with -R -default not working for ctest 4 and -R=-default not working for ctest 3, this now relaxes the filter to -R default
1 parent bee8269 commit 858ad77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

check/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ include(CTest)
44
# add a custom SCIP check target 'scip_check'
55
#
66
add_custom_target(scip_check
7-
COMMAND ${CMAKE_CTEST_COMMAND} -R="-default" -E "applications" --output-on-failure
7+
COMMAND ${CMAKE_CTEST_COMMAND} -R "default" -E "applications" --output-on-failure
88
DEPENDS scip
99
)
1010

0 commit comments

Comments
 (0)