added another error string and change the -I option some
This commit is contained in:
parent
e67ffe8527
commit
757cec6caa
|
@ -134,6 +134,7 @@ static const char* cmCTestErrorMatches[] = {
|
||||||
": syntax error ",
|
": syntax error ",
|
||||||
"^collect2: ld returned 1 exit status",
|
"^collect2: ld returned 1 exit status",
|
||||||
"Unsatisfied symbols:",
|
"Unsatisfied symbols:",
|
||||||
|
"^Unresolved:",
|
||||||
"Undefined symbols:",
|
"Undefined symbols:",
|
||||||
"^Undefined[ \\t]+first referenced",
|
"^Undefined[ \\t]+first referenced",
|
||||||
"^CMake Error:",
|
"^CMake Error:",
|
||||||
|
@ -5192,16 +5193,14 @@ void cmCTest::ExpandTestsToRunInformation(int numTests)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// if start and specific tests are not specified then we assume we start at
|
// if start is not specified then we assume we start at 1
|
||||||
// 1
|
if(start == -1)
|
||||||
if(start == -1 && !m_TestsToRun.size())
|
|
||||||
{
|
{
|
||||||
start = 1;
|
start = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// if end and specific tests are not specified then we assume we end with
|
// if end isnot specified then we assume we end with the last test
|
||||||
// the last test
|
if(end == -1)
|
||||||
if(end == -1 && !m_TestsToRun.size())
|
|
||||||
{
|
{
|
||||||
end = numTests;
|
end = numTests;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue