Skip to content

Commit be1658f

Browse files
authored
disable building empty tests (#1905)
1 parent fb6fdde commit be1658f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Modules/Benchmark/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/Benchmark
3131

3232
# ---- Test(s) ----
3333

34-
set(TEST_SRCS test/testQcBenchmark.cxx)
34+
#set(TEST_SRCS test/testQcBenchmark.cxx) # uncomment to reenable the test which was empty
3535

3636
foreach(test ${TEST_SRCS})
3737
get_filename_component(test_name ${test} NAME)

Modules/CTP/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/CTP
2828

2929
# ---- Test(s) ----
3030

31-
set(TEST_SRCS test/testQcCTP.cxx)
31+
#set(TEST_SRCS test/testQcCTP.cxx) # uncomment to reenable the test which was empty
3232

3333
foreach(test ${TEST_SRCS})
3434
get_filename_component(test_name ${test} NAME)

Modules/FOCAL/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/FOCAL
3232
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/QualityControl")
3333

3434
# ---- Test(s) ----
35-
set(TEST_SRCS test/testQcFOCAL.cxx)
35+
#set(TEST_SRCS test/testQcFOCAL.cxx) # uncomment to reenable the test which was empty
3636

3737
foreach(test ${TEST_SRCS})
3838
get_filename_component(test_name ${test} NAME)

0 commit comments

Comments
 (0)