File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -300,8 +300,9 @@ if (BUILD_TESTS)
300300 add_test (benchmark_branchfree benchmark_branchfree)
301301
302302 # cmake won't actually build the tests before it tries to run them
303- add_test (build_tests "${CMAKE_COMMAND} " --build ${CMAKE_BINARY_DIR} --target tester benchmark_branchfree)
304- set_tests_properties (tester benchmark_branchfree PROPERTIES DEPENDS build_tests)
303+ add_test (build_tester "${CMAKE_COMMAND} " --build ${CMAKE_BINARY_DIR} --target tester)
304+ add_test (build_benchmark_branchfree "${CMAKE_COMMAND} " --build ${CMAKE_BINARY_DIR} --target benchmark_branchfree)
305+ set_tests_properties (tester benchmark_branchfree PROPERTIES DEPENDS "build_tester;build_benchmark_branchfree" )
305306endif ()
306307
307308# Build the fuzzers (requires clang) ###########################
You can’t perform that action at this time.
0 commit comments