Commit f275eb52 authored by Dominik Charousset's avatar Dominik Charousset

Fix CTest invocation

parent 99974f6a
......@@ -390,7 +390,7 @@ if(NOT CAF_NO_UNIT_TESTS)
macro (make_test suite)
string(REPLACE " " "_" test_name ${suite})
set(caf_test ${EXECUTABLE_OUTPUT_PATH}/incubator-test)
add_test(${test_name} ${caf_test} -r 300 -n -v 5 -s "${suite}" ${ARGN})
add_test(${test_name} ${caf_test} -r 300 -n -v 5 -s "^${suite}$" ${ARGN})
endmacro ()
list(LENGTH suites num_suites)
message(STATUS "Found ${num_suites} test suites")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment