mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 06:09:52 -06:00
GoogleTest: gtest_add_tests() fails if any source file is empty
Fixes #18321
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})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user