Skip to content

Commit

Permalink
build: remove check for obsolete target
Browse files Browse the repository at this point in the history
  • Loading branch information
morinim committed Jun 19, 2024
1 parent 774556d commit eb3c598
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ foreach (test_src ${TESTS_SRC})
add_executable(${test} ${test_src})
target_link_libraries(${test} ultra ${CMAKE_THREAD_LIBS_INIT})

if ((NOT ${test} STREQUAL "tests")
AND (NOT ${test} MATCHES "^speed_"))
if (NOT ${test} MATCHES "^speed_")
add_test(NAME ${test} COMMAND ${test})
endif()
endforeach()
Expand Down

0 comments on commit eb3c598

Please sign in to comment.