Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
szhorvat committed Nov 18, 2024
1 parent c70ad1a commit fc1809a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ endfunction()
foreach(test ${TEST_CASES})
add_executable(test_${test} test_${test}.c test_common.c)
target_link_libraries(test_${test} plfit ${MATH_LIBRARY})
add_test(test_${test} test_${test})
add_test(NAME test_${test} COMMAND test_${test})
correct_test_environment(test_${test})
endforeach(test)

foreach(test ${TEST_CASES_INTERNAL})
add_executable(test_${test} test_${test}.c test_common.c ${PROJECT_SOURCE_DIR}/src/${test}.c)
target_link_libraries(test_${test} plfit ${MATH_LIBRARY})
add_test(test_${test} test_${test})
add_test(NAME test_${test} COMMAND test_${test})
correct_test_environment(test_${test})
endforeach(test)

0 comments on commit fc1809a

Please sign in to comment.