diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-04-17 17:13:38 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-04-17 17:13:38 (GMT) |
commit | e7c4c183f0f7b41f0e0671da1b0c00503e63dcc7 (patch) | |
tree | 54fd67e8657a9fba4343eef024985c18ca7360a0 | |
parent | b14eb941d3cf35554c5e75bc9d608978d593b02e (diff) | |
download | CMake-e7c4c183f0f7b41f0e0671da1b0c00503e63dcc7.zip CMake-e7c4c183f0f7b41f0e0671da1b0c00503e63dcc7.tar.gz CMake-e7c4c183f0f7b41f0e0671da1b0c00503e63dcc7.tar.bz2 |
ENH: Add AIX warerr
-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 2cad4c7..80cee06 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -97,6 +97,7 @@ static const char* cmCTestErrorMatches[] = { "^Fatal", "^Error: ", "^Error ", + "[0-9] ERROR: ", "^\"[^\"]+\", line [0-9]+: [^Ww]", "^cc[^C]*CC: ERROR File = ([^,]+), Line = ([0-9]+)", "^ld([^:])*:([ \\t])*ERROR([^:])*:", @@ -142,6 +143,7 @@ static const char* cmCTestWarningMatches[] = { "WARNING: ", "([^ :]+) : warning", "([^:]+): warning", + "\", line [0-9]+\\.[0-9]+:", 0 }; |