diff options
author | Ken Martin <ken.martin@kitware.com> | 2004-07-15 17:53:44 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2004-07-15 17:53:44 (GMT) |
commit | 6ef6d3a547616b5ce89d9f466c6c40b324d7be60 (patch) | |
tree | 6ef66c0159c15534dbde5ebfac6c7bc5f4c269b1 /Source | |
parent | 871db9760fac91562efcf61efd59fe5741f071ea (diff) | |
download | CMake-6ef6d3a547616b5ce89d9f466c6c40b324d7be60.zip CMake-6ef6d3a547616b5ce89d9f466c6c40b324d7be60.tar.gz CMake-6ef6d3a547616b5ce89d9f466c6c40b324d7be60.tar.bz2 |
better error warning exceptions
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmCTest.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index c11adf3..f19305d 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -160,6 +160,7 @@ static const char* cmCTestErrorExceptions[] = { "makefile:", "Makefile:", ":[ \\t]+Where:", + "([^ :]+):([0-9]+): Warning", 0 }; @@ -178,6 +179,7 @@ static const char* cmCTestWarningMatches[] = { "\", line [0-9]+\\.[0-9]+: [0-9]+-[0-9]+ \\(W\\)", "^cxx: Warning:", ".*file: .* has no symbols", + "([^ :]+):([0-9]+): Warning", 0 }; |