mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
Merge topic 'gtest_add_tests-empty-file'
31c82143bfGoogleTest: gtest_add_tests() fails if any source file is emptyd6b06d8d87GoogleTest: Modify test to verify that empty files can be scanned Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2342
This commit is contained in:
@@ -308,7 +308,7 @@ function(gtest_add_tests)
|
||||
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${source})
|
||||
endif()
|
||||
file(READ "${source}" contents)
|
||||
string(REGEX MATCHALL "${gtest_test_type_regex} *\\(([A-Za-z_0-9 ,]+)\\)" found_tests ${contents})
|
||||
string(REGEX MATCHALL "${gtest_test_type_regex} *\\(([A-Za-z_0-9 ,]+)\\)" found_tests "${contents}")
|
||||
foreach(hit ${found_tests})
|
||||
string(REGEX MATCH "${gtest_test_type_regex}" test_type ${hit})
|
||||
|
||||
|
||||
@@ -44,12 +44,13 @@ endif()
|
||||
set_tests_properties(set2.GoogleTest.ConditionalFail.foo PROPERTIES WILL_FAIL YES)
|
||||
|
||||
|
||||
# Search specific sources to get the test list
|
||||
add_executable(test_gtest2 main2.cxx)
|
||||
# Search specific sources to get the test list. Include an empty file
|
||||
# to ensure they are handled correctly too.
|
||||
add_executable(test_gtest2 main2.cxx empty.cxx)
|
||||
target_link_libraries(test_gtest2 GTest::Main)
|
||||
gtest_add_tests(TARGET test_gtest2
|
||||
TEST_LIST testList
|
||||
SOURCES main2.h
|
||||
SOURCES main2.h empty.cxx
|
||||
)
|
||||
set(expectedTests
|
||||
GoogleTest.SomethingElse
|
||||
|
||||
0
Tests/GoogleTest/Test/empty.cxx
Normal file
0
Tests/GoogleTest/Test/empty.cxx
Normal file
Reference in New Issue
Block a user