summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-03-19 23:28:25 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-03-19 23:28:25 (GMT)
commitffb12bae6480c143818bf9dc20c293aa97af79ba (patch)
tree8d667ea6f0ca3aa1d881e1f8d9142982cfe6338c
parent0ca2c8f83e89216d790d709598a87fecb5600964 (diff)
downloadCMake-ffb12bae6480c143818bf9dc20c293aa97af79ba.zip
CMake-ffb12bae6480c143818bf9dc20c293aa97af79ba.tar.gz
CMake-ffb12bae6480c143818bf9dc20c293aa97af79ba.tar.bz2
More regex
-rw-r--r--Source/cmCTest.cxx17
1 files changed, 15 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 5350fc9..be186eb 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -90,6 +90,8 @@ static const char* cmCTestErrorMatches[] = {
"([^ :]+):([0-9]+): ([^ \\t])",
"([^:]+): error[ \\t]*[0-9]+[ \\t]*:",
"^Error ([0-9]+):",
+ "^Fatal",
+ "^Error: ",
"^Error ",
"^\"[^\"]+\", line [0-9]+: [^Ww]",
"^cc[^C]*CC: ERROR File = ([^,]+), Line = ([0-9]+)",
@@ -106,10 +108,21 @@ static const char* cmCTestErrorMatches[] = {
"^Undefined[ \\t]+first referenced",
"^CMake Error:",
":[ \\t]cannot find",
+ ":[ \\t]can't find",
+ ": \\*\\*\\* No rule to make target \\`.*\\'. Stop",
+ ": Invalid loader fixup for symbol",
+ ": internal link edit command failed",
+ ": Unrecognized option \\`.*\\'",
0
};
static const char* cmCTestErrorExceptions[] = {
+ "instantiated from ",
+ "candidates are:",
+ ": warning",
+ "makefile:",
+ "Makefile:",
+ ":[ \\t]+Where:",
0
};
@@ -141,9 +154,9 @@ static const char* cmCTestWarningExceptions[] = {
"bind_at_load",
"XrmQGetResource",
"IceFlush",
- "warning LNK4089: all references to .GDI32.dll. discarded by .OPT:REF",
- "warning LNK4089: all references to .USER32.dll. discarded by .OPT:REF",
+ "warning LNK4089: all references to [^ \\t]+ discarded by .OPT:REF",
"ld32: WARNING 85: definition of dataKey in",
+ "cc: warning 422: Unknown option \"\\+b\\.\" ignored",
0
};