Skip to content

Commit 75c4d8f

Browse files
dschogitster
authored andcommitted
cmake: stop looking for REFTABLE_TEST_OBJS in the Makefile
As of 15e29ea (t: move reftable/stack_test.c to the unit testing framework, 2024-09-08), the reftable tests are no longer part of `test-tool.exe`, so let's stop looking for those lines that are no longer in the `Makefile`. Signed-off-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 77c6bd9 commit 75c4d8f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

contrib/buildsystems/CMakeLists.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -970,10 +970,6 @@ if(BUILD_TESTING)
970970
add_executable(test-fake-ssh ${CMAKE_SOURCE_DIR}/t/helper/test-fake-ssh.c)
971971
target_link_libraries(test-fake-ssh common-main)
972972

973-
#reftable-tests
974-
parse_makefile_for_sources(test-reftable_SOURCES "REFTABLE_TEST_OBJS")
975-
list(TRANSFORM test-reftable_SOURCES PREPEND "${CMAKE_SOURCE_DIR}/")
976-
977973
#unit-tests
978974
add_library(unit-test-lib OBJECT ${CMAKE_SOURCE_DIR}/t/unit-tests/test-lib.c)
979975
add_library(unit-test-lib-oid OBJECT ${CMAKE_SOURCE_DIR}/t/unit-tests/lib-oid.c)
@@ -1062,7 +1058,7 @@ parse_makefile_for_sources(test-tool_SOURCES "TEST_BUILTINS_OBJS")
10621058
add_library(test-lib OBJECT ${CMAKE_SOURCE_DIR}/t/unit-tests/test-lib.c)
10631059

10641060
list(TRANSFORM test-tool_SOURCES PREPEND "${CMAKE_SOURCE_DIR}/t/helper/")
1065-
add_executable(test-tool ${CMAKE_SOURCE_DIR}/t/helper/test-tool.c ${test-tool_SOURCES} ${test-reftable_SOURCES})
1061+
add_executable(test-tool ${CMAKE_SOURCE_DIR}/t/helper/test-tool.c ${test-tool_SOURCES})
10661062
target_link_libraries(test-tool test-lib common-main)
10671063

10681064
set_target_properties(test-fake-ssh test-tool

0 commit comments

Comments
 (0)