diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-08-22 20:07:20 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-08-22 20:07:20 (GMT) |
commit | b50691bb495319085c187073ea57f800025d3a64 (patch) | |
tree | dae2aedaae6ae6796c597bd2baa4c5e75a4b1725 /Source | |
parent | b2c06bb0f80d0ef34bb18234d052d287393cce42 (diff) | |
download | CMake-b50691bb495319085c187073ea57f800025d3a64.zip CMake-b50691bb495319085c187073ea57f800025d3a64.tar.gz CMake-b50691bb495319085c187073ea57f800025d3a64.tar.bz2 |
ENH: Handle more warnings properly on AIX
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CTest/cmCTestBuildHandler.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestBuildHandler.cxx b/Source/CTest/cmCTestBuildHandler.cxx index 44f41f3..8d18371 100644 --- a/Source/CTest/cmCTestBuildHandler.cxx +++ b/Source/CTest/cmCTestBuildHandler.cxx @@ -75,7 +75,7 @@ static const char* cmCTestErrorMatches[] = { ": Can't find library for", ": internal link edit command failed", ": Unrecognized option \\`.*\\'", - "\", line [0-9]+\\.[0-9]+: [0-9]+-[0-9]+ \\([^W]\\)", + "\", line [0-9]+\\.[0-9]+: [0-9]+-[0-9]+ \\([^WI]\\)", "ld: 0706-006 Cannot find or open library file: -l ", "ild: \\(argument error\\) can't find library argument ::", "^could not be found and will not be loaded.", @@ -119,7 +119,7 @@ static const char* cmCTestWarningMatches[] = { "WARNING: ", "([^ :]+) : warning", "([^:]+): warning", - "\", line [0-9]+\\.[0-9]+: [0-9]+-[0-9]+ \\(W\\)", + "\", line [0-9]+\\.[0-9]+: [0-9]+-[0-9]+ \\([WI]\\)", "^cxx: Warning:", ".*file: .* has no symbols", "([^ :]+):([0-9]+): (Warning|Warnung)", |