diff options
author | David Cole <david.cole@kitware.com> | 2012-05-08 18:33:02 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2012-05-08 18:33:02 (GMT) |
commit | 3f781264d2298438d5a190b7caf264746246ebe6 (patch) | |
tree | 43a9c205b30308682756adc938a1015e33d77807 /Source | |
parent | 105dfc38be7fefab3d855f949fed48982b18809e (diff) | |
parent | 56f499dcef320b2644431223bd167de521fdf068 (diff) | |
download | CMake-3f781264d2298438d5a190b7caf264746246ebe6.zip CMake-3f781264d2298438d5a190b7caf264746246ebe6.tar.gz CMake-3f781264d2298438d5a190b7caf264746246ebe6.tar.bz2 |
Merge topic 'fix-13121-handle-gcov47-output'
56f499d CTest: Modify reg ex so it also works with gcov 4.7 output (#13121)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CTest/cmCTestCoverageHandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestCoverageHandler.cxx b/Source/CTest/cmCTestCoverageHandler.cxx index ae06b0f..15c02b4 100644 --- a/Source/CTest/cmCTestCoverageHandler.cxx +++ b/Source/CTest/cmCTestCoverageHandler.cxx @@ -800,7 +800,7 @@ int cmCTestCoverageHandler::HandleGCovCoverage( std::string st2gcovOutputRex1 = "^File *[`'](.*)'$"; std::string st2gcovOutputRex2 = "Lines executed: *[0-9]+\\.[0-9]+% of [0-9]+$"; - std::string st2gcovOutputRex3 = "^(.*):creating [`'](.*\\.gcov)'"; + std::string st2gcovOutputRex3 = "^(.*)reating [`'](.*\\.gcov)'"; std::string st2gcovOutputRex4 = "^(.*):unexpected EOF *$"; std::string st2gcovOutputRex5 = "^(.*):cannot open source file*$"; std::string st2gcovOutputRex6 |