summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorCraig Scott <craig.scott@crascit.com>2018-09-11 13:42:24 (GMT)
committerKitware Robot <kwrobot@kitware.com>2018-09-11 13:42:31 (GMT)
commit344eb9c8dc3b16a524729cb66ad25fc1c127a02c (patch)
tree17d4cc25df3085bb4a775282fe243457e1b96da5 /Modules
parent528d7625b89e0343bbf541edd256971493a6e455 (diff)
parent31c82143bfdb1d9bc5e6282f3341fc09a0ab2234 (diff)
downloadCMake-344eb9c8dc3b16a524729cb66ad25fc1c127a02c.zip
CMake-344eb9c8dc3b16a524729cb66ad25fc1c127a02c.tar.gz
CMake-344eb9c8dc3b16a524729cb66ad25fc1c127a02c.tar.bz2
Merge topic 'gtest_add_tests-empty-file'
31c82143bf GoogleTest: gtest_add_tests() fails if any source file is empty d6b06d8d87 GoogleTest: Modify test to verify that empty files can be scanned Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2342
Diffstat (limited to 'Modules')
-rw-r--r--Modules/GoogleTest.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/GoogleTest.cmake b/Modules/GoogleTest.cmake
index 2c9ee11..a5bb863 100644
--- a/Modules/GoogleTest.cmake
+++ b/Modules/GoogleTest.cmake
@@ -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})