2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2004-09-07 18:37:39 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2004-09-07 18:37:39 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2004-09-07 18:37:39 +04:00
|
|
|
|
|
|
|
#include "cmCTestBuildHandler.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
#include "cmGlobalGenerator.h"
|
2005-01-27 18:15:01 +03:00
|
|
|
#include "cmGeneratedFileStream.h"
|
2009-02-06 00:31:37 +03:00
|
|
|
#include "cmXMLSafe.h"
|
2009-02-11 23:18:08 +03:00
|
|
|
#include "cmFileTimeComparison.h"
|
2004-09-07 18:37:39 +04:00
|
|
|
|
|
|
|
//#include <cmsys/RegularExpression.hxx>
|
|
|
|
#include <cmsys/Process.h>
|
2009-02-11 23:18:08 +03:00
|
|
|
#include <cmsys/Directory.hxx>
|
2014-01-04 09:47:13 +04:00
|
|
|
#include <cmsys/FStream.hxx>
|
2004-09-07 18:37:39 +04:00
|
|
|
|
|
|
|
// used for sleep
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include "windows.h"
|
|
|
|
#endif
|
|
|
|
|
2006-03-09 19:17:10 +03:00
|
|
|
#include <stdlib.h>
|
2004-09-07 18:37:39 +04:00
|
|
|
#include <time.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <float.h>
|
|
|
|
|
2006-08-01 19:38:42 +04:00
|
|
|
#if defined(__BORLANDC__)
|
|
|
|
# pragma warn -8060 /* possibly incorrect assignment */
|
|
|
|
#endif
|
2004-09-07 18:37:39 +04:00
|
|
|
|
|
|
|
static const char* cmCTestErrorMatches[] = {
|
|
|
|
"^[Bb]us [Ee]rror",
|
|
|
|
"^[Ss]egmentation [Vv]iolation",
|
|
|
|
"^[Ss]egmentation [Ff]ault",
|
2011-01-05 22:14:04 +03:00
|
|
|
":.*[Pp]ermission [Dd]enied",
|
2004-09-07 18:37:39 +04:00
|
|
|
"([^ :]+):([0-9]+): ([^ \\t])",
|
|
|
|
"([^:]+): error[ \\t]*[0-9]+[ \\t]*:",
|
|
|
|
"^Error ([0-9]+):",
|
|
|
|
"^Fatal",
|
|
|
|
"^Error: ",
|
|
|
|
"^Error ",
|
|
|
|
"[0-9] ERROR: ",
|
|
|
|
"^\"[^\"]+\", line [0-9]+: [^Ww]",
|
|
|
|
"^cc[^C]*CC: ERROR File = ([^,]+), Line = ([0-9]+)",
|
|
|
|
"^ld([^:])*:([ \\t])*ERROR([^:])*:",
|
|
|
|
"^ild:([ \\t])*\\(undefined symbol\\)",
|
|
|
|
"([^ :]+) : (error|fatal error|catastrophic error)",
|
|
|
|
"([^:]+): (Error:|error|undefined reference|multiply defined)",
|
2011-12-15 18:30:33 +04:00
|
|
|
"([^:]+)\\(([^\\)]+)\\) ?: (error|fatal error|catastrophic error)",
|
2004-09-07 18:37:39 +04:00
|
|
|
"^fatal error C[0-9]+:",
|
|
|
|
": syntax error ",
|
|
|
|
"^collect2: ld returned 1 exit status",
|
2008-03-19 18:18:40 +03:00
|
|
|
"ld terminated with signal",
|
2011-01-05 22:14:04 +03:00
|
|
|
"Unsatisfied symbol",
|
2004-09-07 18:37:39 +04:00
|
|
|
"^Unresolved:",
|
2011-01-05 22:14:04 +03:00
|
|
|
"Undefined symbol",
|
2004-09-07 18:37:39 +04:00
|
|
|
"^Undefined[ \\t]+first referenced",
|
2010-07-02 21:22:30 +04:00
|
|
|
"^CMake Error.*:",
|
2004-09-07 18:37:39 +04:00
|
|
|
":[ \\t]cannot find",
|
|
|
|
":[ \\t]can't find",
|
|
|
|
": \\*\\*\\* No rule to make target \\`.*\\'. Stop",
|
2007-03-20 21:11:32 +03:00
|
|
|
": \\*\\*\\* No targets specified and no makefile found",
|
2004-09-07 18:37:39 +04:00
|
|
|
": Invalid loader fixup for symbol",
|
2005-07-22 16:39:56 +04:00
|
|
|
": Invalid fixups exist",
|
|
|
|
": Can't find library for",
|
2004-09-07 18:37:39 +04:00
|
|
|
": internal link edit command failed",
|
|
|
|
": Unrecognized option \\`.*\\'",
|
2006-08-23 00:07:20 +04:00
|
|
|
"\", line [0-9]+\\.[0-9]+: [0-9]+-[0-9]+ \\([^WI]\\)",
|
2004-09-07 18:37:39 +04:00
|
|
|
"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.",
|
|
|
|
"s:616 string too big",
|
|
|
|
"make: Fatal error: ",
|
|
|
|
"ld: 0711-993 Error occurred while writing to the output file:",
|
2004-11-12 01:40:08 +03:00
|
|
|
"ld: fatal: ",
|
2005-08-17 22:16:17 +04:00
|
|
|
"final link failed:",
|
2004-09-07 18:37:39 +04:00
|
|
|
"make: \\*\\*\\*.*Error",
|
2005-11-18 18:40:31 +03:00
|
|
|
"make\\[.*\\]: \\*\\*\\*.*Error",
|
2005-01-28 18:12:28 +03:00
|
|
|
"\\*\\*\\* Error code",
|
2005-08-03 22:16:13 +04:00
|
|
|
"nternal error:",
|
2005-06-01 23:59:22 +04:00
|
|
|
"Makefile:[0-9]+: \\*\\*\\* .* Stop\\.",
|
2006-03-23 17:56:32 +03:00
|
|
|
": No such file or directory",
|
|
|
|
": Invalid argument",
|
2007-03-16 23:04:31 +03:00
|
|
|
"^The project cannot be built\\.",
|
2011-03-18 11:38:34 +03:00
|
|
|
"^\\[ERROR\\]",
|
2012-03-09 03:32:12 +04:00
|
|
|
"^Command .* failed with exit code",
|
2004-09-07 18:37:39 +04:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char* cmCTestErrorExceptions[] = {
|
|
|
|
"instantiated from ",
|
|
|
|
"candidates are:",
|
|
|
|
": warning",
|
2005-07-22 16:39:56 +04:00
|
|
|
": \\(Warning\\)",
|
2006-10-12 22:47:40 +04:00
|
|
|
": note",
|
2004-09-07 18:37:39 +04:00
|
|
|
"makefile:",
|
|
|
|
"Makefile:",
|
|
|
|
":[ \\t]+Where:",
|
|
|
|
"([^ :]+):([0-9]+): Warning",
|
2005-10-13 18:30:42 +04:00
|
|
|
"------ Build started: .* ------",
|
2004-09-07 18:37:39 +04:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char* cmCTestWarningMatches[] = {
|
|
|
|
"([^ :]+):([0-9]+): warning:",
|
2006-10-12 22:47:40 +04:00
|
|
|
"([^ :]+):([0-9]+): note:",
|
2004-09-07 18:37:39 +04:00
|
|
|
"^cc[^C]*CC: WARNING File = ([^,]+), Line = ([0-9]+)",
|
|
|
|
"^ld([^:])*:([ \\t])*WARNING([^:])*:",
|
|
|
|
"([^:]+): warning ([0-9]+):",
|
2006-01-27 21:46:33 +03:00
|
|
|
"^\"[^\"]+\", line [0-9]+: [Ww](arning|arnung)",
|
2004-09-07 18:37:39 +04:00
|
|
|
"([^:]+): warning[ \\t]*[0-9]+[ \\t]*:",
|
2006-01-27 21:46:33 +03:00
|
|
|
"^(Warning|Warnung) ([0-9]+):",
|
2011-03-18 11:38:34 +03:00
|
|
|
"^(Warning|Warnung)[ :]",
|
2004-09-07 18:37:39 +04:00
|
|
|
"WARNING: ",
|
|
|
|
"([^ :]+) : warning",
|
|
|
|
"([^:]+): warning",
|
2006-08-23 00:07:20 +04:00
|
|
|
"\", line [0-9]+\\.[0-9]+: [0-9]+-[0-9]+ \\([WI]\\)",
|
2004-09-07 18:37:39 +04:00
|
|
|
"^cxx: Warning:",
|
|
|
|
".*file: .* has no symbols",
|
2006-01-27 21:46:33 +03:00
|
|
|
"([^ :]+):([0-9]+): (Warning|Warnung)",
|
2004-09-17 01:13:59 +04:00
|
|
|
"\\([0-9]*\\): remark #[0-9]*",
|
2004-10-21 21:34:55 +04:00
|
|
|
"\".*\", line [0-9]+: remark\\([0-9]*\\):",
|
2004-10-26 18:24:31 +04:00
|
|
|
"cc-[0-9]* CC: REMARK File = .*, Line = [0-9]*",
|
2010-07-02 21:22:30 +04:00
|
|
|
"^CMake Warning.*:",
|
2011-03-18 11:38:34 +03:00
|
|
|
"^\\[WARNING\\]",
|
2004-09-07 18:37:39 +04:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char* cmCTestWarningExceptions[] = {
|
2006-03-09 19:17:10 +03:00
|
|
|
"/usr/.*/X11/Xlib\\.h:[0-9]+: war.*: ANSI C\\+\\+ forbids declaration",
|
|
|
|
"/usr/.*/X11/Xutil\\.h:[0-9]+: war.*: ANSI C\\+\\+ forbids declaration",
|
|
|
|
"/usr/.*/X11/XResource\\.h:[0-9]+: war.*: ANSI C\\+\\+ forbids declaration",
|
2004-09-07 18:37:39 +04:00
|
|
|
"WARNING 84 :",
|
|
|
|
"WARNING 47 :",
|
|
|
|
"makefile:",
|
|
|
|
"Makefile:",
|
|
|
|
"warning: Clock skew detected. Your build may be incomplete.",
|
|
|
|
"/usr/openwin/include/GL/[^:]+:",
|
|
|
|
"bind_at_load",
|
|
|
|
"XrmQGetResource",
|
|
|
|
"IceFlush",
|
|
|
|
"warning LNK4089: all references to [^ \\t]+ discarded by .OPT:REF",
|
|
|
|
"ld32: WARNING 85: definition of dataKey in",
|
|
|
|
"cc: warning 422: Unknown option \"\\+b",
|
|
|
|
"_with_warning_C",
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2004-10-01 02:06:29 +04:00
|
|
|
struct cmCTestBuildCompileErrorWarningRex
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
const char* RegularExpressionString;
|
|
|
|
int FileIndex;
|
|
|
|
int LineIndex;
|
2004-10-01 02:06:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static cmCTestBuildCompileErrorWarningRex
|
2004-10-01 00:20:23 +04:00
|
|
|
cmCTestWarningErrorFileLine[] = {
|
2004-10-01 02:06:29 +04:00
|
|
|
{ "^Warning W[0-9]+ ([a-zA-Z.\\:/0-9_+ ~-]+) ([0-9]+):", 1, 2 },
|
|
|
|
{ "^([a-zA-Z./0-9_+ ~-]+):([0-9]+):", 1, 2 },
|
2012-08-13 21:42:58 +04:00
|
|
|
{ "^([a-zA-Z.\\:/0-9_+ ~-]+)\\(([0-9]+)\\)", 1, 2 },
|
2008-10-09 21:00:31 +04:00
|
|
|
{ "^[0-9]+>([a-zA-Z.\\:/0-9_+ ~-]+)\\(([0-9]+)\\)", 1, 2 },
|
2004-10-01 02:06:29 +04:00
|
|
|
{ "^([a-zA-Z./0-9_+ ~-]+)\\(([0-9]+)\\)", 1, 2 },
|
|
|
|
{ "\"([a-zA-Z./0-9_+ ~-]+)\", line ([0-9]+)", 1, 2 },
|
|
|
|
{ "File = ([a-zA-Z./0-9_+ ~-]+), Line = ([0-9]+)", 1, 2 },
|
|
|
|
{ 0, 0, 0 }
|
2004-10-01 00:20:23 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
cmCTestBuildHandler::cmCTestBuildHandler()
|
|
|
|
{
|
2010-07-02 21:22:30 +04:00
|
|
|
this->MaxPreContext = 10;
|
|
|
|
this->MaxPostContext = 10;
|
2005-06-02 19:47:10 +04:00
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
this->MaxErrors = 50;
|
|
|
|
this->MaxWarnings = 50;
|
2005-06-02 19:47:10 +04:00
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
this->LastErrorOrWarning = this->ErrorsAndWarnings.end();
|
2005-06-06 17:23:45 +04:00
|
|
|
|
2009-02-11 23:18:08 +03:00
|
|
|
this->UseCTestLaunch = false;
|
2004-10-01 00:20:23 +04:00
|
|
|
}
|
|
|
|
|
2005-06-17 21:04:56 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void cmCTestBuildHandler::Initialize()
|
|
|
|
{
|
2005-06-23 21:04:18 +04:00
|
|
|
this->Superclass::Initialize();
|
2006-03-10 23:03:09 +03:00
|
|
|
this->StartBuild = "";
|
|
|
|
this->EndBuild = "";
|
|
|
|
this->CustomErrorMatches.clear();
|
|
|
|
this->CustomErrorExceptions.clear();
|
|
|
|
this->CustomWarningMatches.clear();
|
|
|
|
this->CustomWarningExceptions.clear();
|
2009-02-11 23:18:08 +03:00
|
|
|
this->ReallyCustomWarningMatches.clear();
|
|
|
|
this->ReallyCustomWarningExceptions.clear();
|
2006-03-10 23:03:09 +03:00
|
|
|
this->ErrorWarningFileLineRegex.clear();
|
|
|
|
|
|
|
|
this->ErrorMatchRegex.clear();
|
|
|
|
this->ErrorExceptionRegex.clear();
|
|
|
|
this->WarningMatchRegex.clear();
|
|
|
|
this->WarningExceptionRegex.clear();
|
|
|
|
this->BuildProcessingQueue.clear();
|
|
|
|
this->BuildProcessingErrorQueue.clear();
|
|
|
|
this->BuildOutputLogSize = 0;
|
|
|
|
this->CurrentProcessingLine.clear();
|
|
|
|
|
|
|
|
this->SimplifySourceDir = "";
|
|
|
|
this->SimplifyBuildDir = "";
|
|
|
|
this->OutputLineCounter = 0;
|
|
|
|
this->ErrorsAndWarnings.clear();
|
|
|
|
this->LastErrorOrWarning = this->ErrorsAndWarnings.end();
|
|
|
|
this->PostContextCount = 0;
|
2010-07-02 21:22:30 +04:00
|
|
|
this->MaxPreContext = 10;
|
|
|
|
this->MaxPostContext = 10;
|
2006-03-10 23:03:09 +03:00
|
|
|
this->PreContext.clear();
|
|
|
|
|
|
|
|
this->TotalErrors = 0;
|
|
|
|
this->TotalWarnings = 0;
|
|
|
|
this->LastTickChar = 0;
|
|
|
|
|
|
|
|
this->ErrorQuotaReached = false;
|
|
|
|
this->WarningQuotaReached = false;
|
|
|
|
|
|
|
|
this->MaxErrors = 50;
|
|
|
|
this->MaxWarnings = 50;
|
2009-02-11 23:18:08 +03:00
|
|
|
|
|
|
|
this->UseCTestLaunch = false;
|
2005-06-17 21:04:56 +04:00
|
|
|
}
|
2004-09-07 18:37:39 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void cmCTestBuildHandler::PopulateCustomVectors(cmMakefile *mf)
|
|
|
|
{
|
2006-03-29 21:01:24 +04:00
|
|
|
this->CTest->PopulateCustomVector(mf, "CTEST_CUSTOM_ERROR_MATCH",
|
|
|
|
this->CustomErrorMatches);
|
|
|
|
this->CTest->PopulateCustomVector(mf, "CTEST_CUSTOM_ERROR_EXCEPTION",
|
|
|
|
this->CustomErrorExceptions);
|
|
|
|
this->CTest->PopulateCustomVector(mf, "CTEST_CUSTOM_WARNING_MATCH",
|
|
|
|
this->CustomWarningMatches);
|
|
|
|
this->CTest->PopulateCustomVector(mf, "CTEST_CUSTOM_WARNING_EXCEPTION",
|
|
|
|
this->CustomWarningExceptions);
|
|
|
|
this->CTest->PopulateCustomInteger(mf,
|
|
|
|
"CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS",
|
|
|
|
this->MaxErrors);
|
|
|
|
this->CTest->PopulateCustomInteger(mf,
|
2006-03-09 19:17:10 +03:00
|
|
|
"CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS",
|
2006-03-10 23:03:09 +03:00
|
|
|
this->MaxWarnings);
|
2009-02-11 23:18:08 +03:00
|
|
|
|
2010-07-02 21:22:30 +04:00
|
|
|
int n = -1;
|
|
|
|
this->CTest->PopulateCustomInteger(mf, "CTEST_CUSTOM_ERROR_PRE_CONTEXT", n);
|
|
|
|
if (n != -1)
|
|
|
|
{
|
|
|
|
this->MaxPreContext = static_cast<size_t>(n);
|
|
|
|
}
|
|
|
|
|
|
|
|
n = -1;
|
|
|
|
this->CTest->PopulateCustomInteger(mf, "CTEST_CUSTOM_ERROR_POST_CONTEXT", n);
|
|
|
|
if (n != -1)
|
|
|
|
{
|
|
|
|
this->MaxPostContext = static_cast<size_t>(n);
|
|
|
|
}
|
|
|
|
|
2009-02-11 23:18:08 +03:00
|
|
|
// Record the user-specified custom warning rules.
|
|
|
|
if(const char* customWarningMatchers =
|
|
|
|
mf->GetDefinition("CTEST_CUSTOM_WARNING_MATCH"))
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(customWarningMatchers,
|
|
|
|
this->ReallyCustomWarningMatches);
|
|
|
|
}
|
|
|
|
if(const char* customWarningExceptions =
|
|
|
|
mf->GetDefinition("CTEST_CUSTOM_WARNING_EXCEPTION"))
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(customWarningExceptions,
|
|
|
|
this->ReallyCustomWarningExceptions);
|
|
|
|
}
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
|
|
|
|
2009-12-04 20:09:01 +03:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
std::string cmCTestBuildHandler::GetMakeCommand()
|
|
|
|
{
|
|
|
|
std::string makeCommand
|
|
|
|
= this->CTest->GetCTestConfiguration("MakeCommand");
|
|
|
|
cmCTestLog(this->CTest,
|
2012-08-13 21:42:58 +04:00
|
|
|
HANDLER_VERBOSE_OUTPUT, "MakeCommand:" << makeCommand <<
|
2009-12-04 20:09:01 +03:00
|
|
|
"\n");
|
|
|
|
|
|
|
|
std::string configType = this->CTest->GetConfigType();
|
|
|
|
if (configType == "")
|
|
|
|
{
|
|
|
|
configType
|
|
|
|
= this->CTest->GetCTestConfiguration("DefaultCTestConfigurationType");
|
|
|
|
}
|
|
|
|
if (configType == "")
|
|
|
|
{
|
|
|
|
configType = "Release";
|
|
|
|
}
|
|
|
|
|
|
|
|
cmSystemTools::ReplaceString(makeCommand,
|
|
|
|
"${CTEST_CONFIGURATION_TYPE}", configType.c_str());
|
|
|
|
|
|
|
|
return makeCommand;
|
|
|
|
}
|
|
|
|
|
2004-09-07 18:37:39 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
//clearly it would be nice if this were broken up into a few smaller
|
|
|
|
//functions and commented...
|
2005-01-27 23:54:47 +03:00
|
|
|
int cmCTestBuildHandler::ProcessHandler()
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, "Build project" << std::endl);
|
2005-06-01 23:59:22 +04:00
|
|
|
|
2006-10-19 18:45:19 +04:00
|
|
|
// do we have time for this
|
|
|
|
if (this->CTest->GetRemainingTimeAllowed() < 120)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-07-03 06:31:30 +04:00
|
|
|
int entry;
|
2006-03-09 19:17:10 +03:00
|
|
|
for ( entry = 0;
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestWarningErrorFileLine[entry].RegularExpressionString;
|
2006-03-09 19:17:10 +03:00
|
|
|
++ entry )
|
2005-07-03 06:31:30 +04:00
|
|
|
{
|
|
|
|
cmCTestBuildHandler::cmCTestCompileErrorWarningRex r;
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( r.RegularExpression.compile(
|
|
|
|
cmCTestWarningErrorFileLine[entry].RegularExpressionString) )
|
2005-07-03 06:31:30 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
r.FileIndex = cmCTestWarningErrorFileLine[entry].FileIndex;
|
|
|
|
r.LineIndex = cmCTestWarningErrorFileLine[entry].LineIndex;
|
|
|
|
this->ErrorWarningFileLineRegex.push_back(r);
|
2005-07-03 06:31:30 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2006-03-09 19:17:10 +03:00
|
|
|
"Problem Compiling regular expression: "
|
2006-03-10 23:03:09 +03:00
|
|
|
<< cmCTestWarningErrorFileLine[entry].RegularExpressionString
|
2006-03-09 19:17:10 +03:00
|
|
|
<< std::endl);
|
2005-07-03 06:31:30 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
// Determine build command and build directory
|
2009-12-04 20:09:01 +03:00
|
|
|
std::string makeCommand = this->GetMakeCommand();
|
2004-09-07 18:37:39 +04:00
|
|
|
if ( makeCommand.size() == 0 )
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2006-03-09 19:17:10 +03:00
|
|
|
"Cannot find MakeCommand key in the DartConfiguration.tcl"
|
|
|
|
<< std::endl);
|
2005-01-27 23:54:47 +03:00
|
|
|
return -1;
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
2009-12-04 20:09:01 +03:00
|
|
|
|
2006-03-09 19:17:10 +03:00
|
|
|
const std::string &buildDirectory
|
2006-03-10 23:03:09 +03:00
|
|
|
= this->CTest->GetCTestConfiguration("BuildDirectory");
|
2004-09-07 18:37:39 +04:00
|
|
|
if ( buildDirectory.size() == 0 )
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2006-03-09 19:17:10 +03:00
|
|
|
"Cannot find BuildDirectory key in the DartConfiguration.tcl"
|
|
|
|
<< std::endl);
|
2005-01-27 23:54:47 +03:00
|
|
|
return -1;
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
|
|
|
|
2009-02-11 23:18:08 +03:00
|
|
|
std::string const& useLaunchers =
|
|
|
|
this->CTest->GetCTestConfiguration("UseLaunchers");
|
|
|
|
this->UseCTestLaunch = cmSystemTools::IsOn(useLaunchers.c_str());
|
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
// Create a last build log
|
2005-01-27 18:15:01 +03:00
|
|
|
cmGeneratedFileStream ofs;
|
2004-09-07 18:37:39 +04:00
|
|
|
double elapsed_time_start = cmSystemTools::GetTime();
|
2005-06-23 21:04:18 +04:00
|
|
|
if ( !this->StartLogFile("Build", ofs) )
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE, "Cannot create build log file"
|
2006-03-09 19:17:10 +03:00
|
|
|
<< std::endl);
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
2005-01-27 18:15:01 +03:00
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
// Create lists of regular expression strings for errors, error exceptions,
|
|
|
|
// warnings and warning exceptions.
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string>::size_type cc;
|
2005-06-01 23:59:22 +04:00
|
|
|
for ( cc = 0; cmCTestErrorMatches[cc]; cc ++ )
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CustomErrorMatches.push_back(cmCTestErrorMatches[cc]);
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
2005-06-01 23:59:22 +04:00
|
|
|
for ( cc = 0; cmCTestErrorExceptions[cc]; cc ++ )
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CustomErrorExceptions.push_back(cmCTestErrorExceptions[cc]);
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
2005-06-01 23:59:22 +04:00
|
|
|
for ( cc = 0; cmCTestWarningMatches[cc]; cc ++ )
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CustomWarningMatches.push_back(cmCTestWarningMatches[cc]);
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
for ( cc = 0; cmCTestWarningExceptions[cc]; cc ++ )
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CustomWarningExceptions.push_back(cmCTestWarningExceptions[cc]);
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
// Pre-compile regular expressions objects for all regular expressions
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string>::iterator it;
|
2005-06-01 23:59:22 +04:00
|
|
|
|
|
|
|
#define cmCTestBuildHandlerPopulateRegexVector(strings, regexes) \
|
|
|
|
regexes.clear(); \
|
2006-04-09 15:45:18 +04:00
|
|
|
cmCTestLog(this->CTest, DEBUG, this << "Add " #regexes \
|
|
|
|
<< std::endl); \
|
2005-06-01 23:59:22 +04:00
|
|
|
for ( it = strings.begin(); it != strings.end(); ++it ) \
|
|
|
|
{ \
|
2006-04-09 15:45:18 +04:00
|
|
|
cmCTestLog(this->CTest, DEBUG, "Add " #strings ": " \
|
2014-03-11 16:35:32 +04:00
|
|
|
<< *it << std::endl); \
|
2005-06-01 23:59:22 +04:00
|
|
|
regexes.push_back(it->c_str()); \
|
|
|
|
}
|
2006-03-09 19:17:10 +03:00
|
|
|
cmCTestBuildHandlerPopulateRegexVector(
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CustomErrorMatches, this->ErrorMatchRegex);
|
2006-03-09 19:17:10 +03:00
|
|
|
cmCTestBuildHandlerPopulateRegexVector(
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CustomErrorExceptions, this->ErrorExceptionRegex);
|
2006-03-09 19:17:10 +03:00
|
|
|
cmCTestBuildHandlerPopulateRegexVector(
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CustomWarningMatches, this->WarningMatchRegex);
|
2006-03-09 19:17:10 +03:00
|
|
|
cmCTestBuildHandlerPopulateRegexVector(
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CustomWarningExceptions, this->WarningExceptionRegex);
|
2005-06-01 23:59:22 +04:00
|
|
|
|
|
|
|
|
|
|
|
// Determine source and binary tree substitutions to simplify the output.
|
2006-03-10 23:03:09 +03:00
|
|
|
this->SimplifySourceDir = "";
|
|
|
|
this->SimplifyBuildDir = "";
|
|
|
|
if ( this->CTest->GetCTestConfiguration("SourceDirectory").size() > 20 )
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
std::string srcdir
|
2006-03-10 23:03:09 +03:00
|
|
|
= this->CTest->GetCTestConfiguration("SourceDirectory") + "/";
|
2004-09-07 18:37:39 +04:00
|
|
|
std::string srcdirrep;
|
|
|
|
for ( cc = srcdir.size()-2; cc > 0; cc -- )
|
|
|
|
{
|
|
|
|
if ( srcdir[cc] == '/' )
|
|
|
|
{
|
|
|
|
srcdirrep = srcdir.c_str() + cc;
|
|
|
|
srcdirrep = "/..." + srcdirrep;
|
|
|
|
srcdir = srcdir.substr(0, cc+1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
this->SimplifySourceDir = srcdir;
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( this->CTest->GetCTestConfiguration("BuildDirectory").size() > 20 )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
std::string bindir
|
2006-03-10 23:03:09 +03:00
|
|
|
= this->CTest->GetCTestConfiguration("BuildDirectory") + "/";
|
2005-06-01 23:59:22 +04:00
|
|
|
std::string bindirrep;
|
2004-09-07 18:37:39 +04:00
|
|
|
for ( cc = bindir.size()-2; cc > 0; cc -- )
|
|
|
|
{
|
|
|
|
if ( bindir[cc] == '/' )
|
|
|
|
{
|
|
|
|
bindirrep = bindir.c_str() + cc;
|
|
|
|
bindirrep = "/..." + bindirrep;
|
|
|
|
bindir = bindir.substr(0, cc+1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
this->SimplifyBuildDir = bindir;
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
// Ok, let's do the build
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
// Remember start build time
|
2006-03-10 23:03:09 +03:00
|
|
|
this->StartBuild = this->CTest->CurrentTime();
|
2008-01-30 19:17:36 +03:00
|
|
|
this->StartBuildTime = cmSystemTools::GetTime();
|
2005-06-01 23:59:22 +04:00
|
|
|
int retVal = 0;
|
|
|
|
int res = cmsysProcess_State_Exited;
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( !this->CTest->GetShowOnly() )
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
res = this->RunMakeCommand(makeCommand.c_str(), &retVal,
|
|
|
|
buildDirectory.c_str(), 0, ofs);
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
2005-06-01 23:59:22 +04:00
|
|
|
else
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, DEBUG, "Build with command: " << makeCommand
|
2006-03-09 19:17:10 +03:00
|
|
|
<< std::endl);
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
// Remember end build time and calculate elapsed time
|
2006-03-10 23:03:09 +03:00
|
|
|
this->EndBuild = this->CTest->CurrentTime();
|
2008-01-30 19:17:36 +03:00
|
|
|
this->EndBuildTime = cmSystemTools::GetTime();
|
2005-06-01 23:59:22 +04:00
|
|
|
double elapsed_build_time = cmSystemTools::GetTime() - elapsed_time_start;
|
|
|
|
|
|
|
|
// Cleanups strings in the errors and warnings list.
|
|
|
|
t_ErrorsAndWarningsVector::iterator evit;
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( !this->SimplifySourceDir.empty() )
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
for ( evit = this->ErrorsAndWarnings.begin();
|
|
|
|
evit != this->ErrorsAndWarnings.end();
|
2006-03-09 19:17:10 +03:00
|
|
|
++ evit )
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
cmSystemTools::ReplaceString(
|
2006-03-10 23:03:09 +03:00
|
|
|
evit->Text, this->SimplifySourceDir.c_str(), "/.../");
|
2006-03-09 19:17:10 +03:00
|
|
|
cmSystemTools::ReplaceString(
|
2006-03-10 23:03:09 +03:00
|
|
|
evit->PreContext, this->SimplifySourceDir.c_str(), "/.../");
|
2006-03-09 19:17:10 +03:00
|
|
|
cmSystemTools::ReplaceString(
|
2006-03-10 23:03:09 +03:00
|
|
|
evit->PostContext, this->SimplifySourceDir.c_str(), "/.../");
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( !this->SimplifyBuildDir.empty() )
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
for ( evit = this->ErrorsAndWarnings.begin();
|
|
|
|
evit != this->ErrorsAndWarnings.end();
|
2006-03-09 19:17:10 +03:00
|
|
|
++ evit )
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
cmSystemTools::ReplaceString(
|
2006-03-10 23:03:09 +03:00
|
|
|
evit->Text, this->SimplifyBuildDir.c_str(), "/.../");
|
2006-03-09 19:17:10 +03:00
|
|
|
cmSystemTools::ReplaceString(
|
2006-03-10 23:03:09 +03:00
|
|
|
evit->PreContext, this->SimplifyBuildDir.c_str(), "/.../");
|
2006-03-09 19:17:10 +03:00
|
|
|
cmSystemTools::ReplaceString(
|
2006-03-10 23:03:09 +03:00
|
|
|
evit->PostContext, this->SimplifyBuildDir.c_str(), "/.../");
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
// Generate XML output
|
2005-01-27 18:15:01 +03:00
|
|
|
cmGeneratedFileStream xofs;
|
2009-01-12 18:37:55 +03:00
|
|
|
if(!this->StartResultingXML(cmCTest::PartBuild, "Build", xofs))
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE, "Cannot create build XML file"
|
2006-03-09 19:17:10 +03:00
|
|
|
<< std::endl);
|
2005-01-27 23:54:47 +03:00
|
|
|
return -1;
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
2009-02-04 22:34:12 +03:00
|
|
|
this->GenerateXMLHeader(xofs);
|
2009-02-11 23:18:08 +03:00
|
|
|
if(this->UseCTestLaunch)
|
|
|
|
{
|
|
|
|
this->GenerateXMLLaunched(xofs);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->GenerateXMLLogScraped(xofs);
|
|
|
|
}
|
2009-02-04 22:34:12 +03:00
|
|
|
this->GenerateXMLFooter(xofs, elapsed_build_time);
|
2009-02-04 22:34:25 +03:00
|
|
|
|
2009-09-21 21:40:40 +04:00
|
|
|
if (res != cmsysProcess_State_Exited || retVal || this->TotalErrors > 0)
|
|
|
|
{
|
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE, "Error(s) when building project"
|
|
|
|
<< std::endl);
|
|
|
|
}
|
|
|
|
|
2009-02-04 22:34:25 +03:00
|
|
|
// Display message about number of errors and warnings
|
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, " " << this->TotalErrors
|
|
|
|
<< (this->TotalErrors >= this->MaxErrors ? " or more" : "")
|
|
|
|
<< " Compiler errors" << std::endl);
|
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, " " << this->TotalWarnings
|
|
|
|
<< (this->TotalWarnings >= this->MaxWarnings ? " or more" : "")
|
|
|
|
<< " Compiler warnings" << std::endl);
|
|
|
|
|
2009-01-14 21:48:03 +03:00
|
|
|
return retVal;
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
|
|
|
|
2009-02-04 22:34:12 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmCTestBuildHandler::GenerateXMLHeader(std::ostream& os)
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
2009-01-12 17:11:29 +03:00
|
|
|
this->CTest->StartXML(os, this->AppendXML);
|
2004-09-07 18:37:39 +04:00
|
|
|
os << "<Build>\n"
|
2006-03-10 23:03:09 +03:00
|
|
|
<< "\t<StartDateTime>" << this->StartBuild << "</StartDateTime>\n"
|
2012-08-13 21:42:58 +04:00
|
|
|
<< "\t<StartBuildTime>" <<
|
2008-01-30 19:17:36 +03:00
|
|
|
static_cast<unsigned int>(this->StartBuildTime)
|
|
|
|
<< "</StartBuildTime>\n"
|
2006-03-09 19:17:10 +03:00
|
|
|
<< "<BuildCommand>"
|
2009-12-04 20:09:01 +03:00
|
|
|
<< cmXMLSafe(this->GetMakeCommand())
|
2004-09-07 18:37:39 +04:00
|
|
|
<< "</BuildCommand>" << std::endl;
|
2009-02-04 22:34:12 +03:00
|
|
|
}
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2009-02-11 23:18:08 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
class cmCTestBuildHandler::FragmentCompare
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FragmentCompare(cmFileTimeComparison* ftc): FTC(ftc) {}
|
2010-04-29 01:52:46 +04:00
|
|
|
FragmentCompare(): FTC(0) {}
|
2009-02-11 23:18:08 +03:00
|
|
|
bool operator()(std::string const& l, std::string const& r)
|
|
|
|
{
|
2009-02-12 18:01:39 +03:00
|
|
|
// Order files by modification time. Use lexicographic order
|
|
|
|
// among files with the same time.
|
2009-02-11 23:18:08 +03:00
|
|
|
int result;
|
2009-02-12 18:01:39 +03:00
|
|
|
if(this->FTC->FileTimeCompare(l.c_str(), r.c_str(), &result) &&
|
|
|
|
result != 0)
|
2009-02-11 23:18:08 +03:00
|
|
|
{
|
|
|
|
return result < 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return l < r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
cmFileTimeComparison* FTC;
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmCTestBuildHandler::GenerateXMLLaunched(std::ostream& os)
|
|
|
|
{
|
|
|
|
if(this->CTestLaunchDir.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort XML fragments in chronological order.
|
|
|
|
cmFileTimeComparison ftc;
|
|
|
|
FragmentCompare fragmentCompare(&ftc);
|
2014-02-10 09:21:34 +04:00
|
|
|
typedef std::set<std::string, FragmentCompare> Fragments;
|
2009-02-11 23:18:08 +03:00
|
|
|
Fragments fragments(fragmentCompare);
|
|
|
|
|
|
|
|
// Identify fragments on disk.
|
|
|
|
cmsys::Directory launchDir;
|
|
|
|
launchDir.Load(this->CTestLaunchDir.c_str());
|
|
|
|
unsigned long n = launchDir.GetNumberOfFiles();
|
|
|
|
for(unsigned long i=0; i < n; ++i)
|
|
|
|
{
|
|
|
|
const char* fname = launchDir.GetFile(i);
|
|
|
|
if(this->IsLaunchedErrorFile(fname))
|
|
|
|
{
|
|
|
|
fragments.insert(this->CTestLaunchDir + "/" + fname);
|
|
|
|
++this->TotalErrors;
|
|
|
|
}
|
|
|
|
else if(this->IsLaunchedWarningFile(fname))
|
|
|
|
{
|
|
|
|
fragments.insert(this->CTestLaunchDir + "/" + fname);
|
|
|
|
++this->TotalWarnings;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the fragments into the final XML file.
|
|
|
|
for(Fragments::const_iterator fi = fragments.begin();
|
|
|
|
fi != fragments.end(); ++fi)
|
|
|
|
{
|
|
|
|
this->GenerateXMLLaunchedFragment(os, fi->c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-04 22:34:12 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmCTestBuildHandler::GenerateXMLLogScraped(std::ostream& os)
|
|
|
|
{
|
|
|
|
std::vector<cmCTestBuildErrorWarning>& ew = this->ErrorsAndWarnings;
|
2004-09-07 18:37:39 +04:00
|
|
|
std::vector<cmCTestBuildErrorWarning>::iterator it;
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2005-01-12 21:51:20 +03:00
|
|
|
// only report the first 50 warnings and first 50 errors
|
2009-10-02 00:47:08 +04:00
|
|
|
int numErrorsAllowed = this->MaxErrors;
|
|
|
|
int numWarningsAllowed = this->MaxWarnings;
|
2006-03-10 23:03:09 +03:00
|
|
|
std::string srcdir = this->CTest->GetCTestConfiguration("SourceDirectory");
|
2005-04-07 21:03:47 +04:00
|
|
|
// make sure the source dir is in the correct case on windows
|
|
|
|
// via a call to collapse full path.
|
|
|
|
srcdir = cmSystemTools::CollapseFullPath(srcdir.c_str());
|
|
|
|
srcdir += "/";
|
2006-03-09 19:17:10 +03:00
|
|
|
for ( it = ew.begin();
|
2005-01-12 21:51:20 +03:00
|
|
|
it != ew.end() && (numErrorsAllowed || numWarningsAllowed); it++ )
|
2004-09-07 18:37:39 +04:00
|
|
|
{
|
|
|
|
cmCTestBuildErrorWarning *cm = &(*it);
|
2009-09-11 16:18:15 +04:00
|
|
|
if ((cm->Error && numErrorsAllowed) ||
|
|
|
|
(!cm->Error && numWarningsAllowed))
|
2004-10-01 00:20:23 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
if (cm->Error)
|
2004-10-01 00:20:23 +04:00
|
|
|
{
|
2005-01-12 21:51:20 +03:00
|
|
|
numErrorsAllowed--;
|
2004-10-01 00:20:23 +04:00
|
|
|
}
|
2005-01-12 21:51:20 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
numWarningsAllowed--;
|
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
os << "\t<" << (cm->Error ? "Error" : "Warning") << ">\n"
|
|
|
|
<< "\t\t<BuildLogLine>" << cm->LogLine << "</BuildLogLine>\n"
|
2009-02-06 00:31:37 +03:00
|
|
|
<< "\t\t<Text>" << cmXMLSafe(cm->Text).Quotes(false)
|
2005-01-12 21:51:20 +03:00
|
|
|
<< "\n</Text>" << std::endl;
|
|
|
|
std::vector<cmCTestCompileErrorWarningRex>::iterator rit;
|
2006-03-10 23:03:09 +03:00
|
|
|
for ( rit = this->ErrorWarningFileLineRegex.begin();
|
|
|
|
rit != this->ErrorWarningFileLineRegex.end(); ++ rit )
|
2005-01-12 21:51:20 +03:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmsys::RegularExpression* re = &rit->RegularExpression;
|
|
|
|
if ( re->find(cm->Text.c_str() ) )
|
2005-01-12 21:51:20 +03:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cm->SourceFile = re->match(rit->FileIndex);
|
|
|
|
// At this point we need to make this->SourceFile relative to
|
2005-04-07 21:03:47 +04:00
|
|
|
// the source root of the project, so cvs links will work
|
2006-03-10 23:03:09 +03:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(cm->SourceFile);
|
|
|
|
if(cm->SourceFile.find("/.../") != cm->SourceFile.npos)
|
2005-04-07 21:03:47 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmSystemTools::ReplaceString(cm->SourceFile, "/.../", "");
|
|
|
|
std::string::size_type p = cm->SourceFile.find("/");
|
|
|
|
if(p != cm->SourceFile.npos)
|
2005-04-07 21:03:47 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cm->SourceFile = cm->SourceFile.substr(
|
|
|
|
p+1, cm->SourceFile.size()-p);
|
2005-04-07 21:03:47 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// make sure it is a full path with the correct case
|
2006-03-10 23:03:09 +03:00
|
|
|
cm->SourceFile = cmSystemTools::CollapseFullPath(
|
|
|
|
cm->SourceFile.c_str());
|
2006-03-09 19:17:10 +03:00
|
|
|
cmSystemTools::ReplaceString(
|
2006-03-10 23:03:09 +03:00
|
|
|
cm->SourceFile, srcdir.c_str(), "");
|
2005-04-07 21:03:47 +04:00
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
cm->LineNumber = atoi(re->match(rit->LineIndex).c_str());
|
2005-01-12 21:51:20 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-04-27 23:23:39 +04:00
|
|
|
if ( !cm->SourceFile.empty() && cm->LineNumber >= 0 )
|
2005-01-12 21:51:20 +03:00
|
|
|
{
|
2006-04-27 23:23:39 +04:00
|
|
|
if ( cm->SourceFile.size() > 0 )
|
|
|
|
{
|
|
|
|
os << "\t\t<SourceFile>" << cm->SourceFile << "</SourceFile>"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
if ( cm->SourceFileTail.size() > 0 )
|
|
|
|
{
|
|
|
|
os << "\t\t<SourceFileTail>" << cm->SourceFileTail
|
|
|
|
<< "</SourceFileTail>" << std::endl;
|
|
|
|
}
|
|
|
|
if ( cm->LineNumber >= 0 )
|
|
|
|
{
|
|
|
|
os << "\t\t<SourceLineNumber>" << cm->LineNumber
|
|
|
|
<< "</SourceLineNumber>" << std::endl;
|
|
|
|
}
|
2005-01-12 21:51:20 +03:00
|
|
|
}
|
2009-02-06 00:31:37 +03:00
|
|
|
os << "\t\t<PreContext>" << cmXMLSafe(cm->PreContext).Quotes(false)
|
2005-01-12 21:51:20 +03:00
|
|
|
<< "</PreContext>\n"
|
2009-02-06 00:31:37 +03:00
|
|
|
<< "\t\t<PostContext>" << cmXMLSafe(cm->PostContext).Quotes(false);
|
2005-01-12 21:51:20 +03:00
|
|
|
// is this the last warning or error, if so notify
|
2009-09-11 16:18:15 +04:00
|
|
|
if ((cm->Error && !numErrorsAllowed) ||
|
|
|
|
(!cm->Error && !numWarningsAllowed))
|
2005-01-12 21:51:20 +03:00
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
os << "\nThe maximum number of reported warnings or errors has been "
|
|
|
|
"reached!!!\n";
|
2005-01-12 21:51:20 +03:00
|
|
|
}
|
|
|
|
os << "</PostContext>\n"
|
|
|
|
<< "\t\t<RepeatCount>0</RepeatCount>\n"
|
2006-03-10 23:03:09 +03:00
|
|
|
<< "</" << (cm->Error ? "Error" : "Warning") << ">\n\n"
|
2004-09-07 18:37:39 +04:00
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
}
|
2009-02-04 22:34:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmCTestBuildHandler::GenerateXMLFooter(std::ostream& os,
|
|
|
|
double elapsed_build_time)
|
|
|
|
{
|
2004-09-07 18:37:39 +04:00
|
|
|
os << "\t<Log Encoding=\"base64\" Compression=\"/bin/gzip\">\n\t</Log>\n"
|
2006-03-10 23:03:09 +03:00
|
|
|
<< "\t<EndDateTime>" << this->EndBuild << "</EndDateTime>\n"
|
2008-01-30 19:17:36 +03:00
|
|
|
<< "\t<EndBuildTime>" << static_cast<unsigned int>(this->EndBuildTime)
|
|
|
|
<< "</EndBuildTime>\n"
|
2004-09-07 18:37:39 +04:00
|
|
|
<< "<ElapsedMinutes>" << static_cast<int>(elapsed_build_time/6)/10.0
|
|
|
|
<< "</ElapsedMinutes>"
|
|
|
|
<< "</Build>" << std::endl;
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CTest->EndXML(os);
|
2004-09-07 18:37:39 +04:00
|
|
|
}
|
2005-06-01 23:59:22 +04:00
|
|
|
|
2009-02-11 23:18:08 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmCTestBuildHandler::GenerateXMLLaunchedFragment(std::ostream& os,
|
|
|
|
const char* fname)
|
|
|
|
{
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream fin(fname, std::ios::in | std::ios::binary);
|
2009-02-11 23:18:08 +03:00
|
|
|
std::string line;
|
|
|
|
while(cmSystemTools::GetLineFromStream(fin, line))
|
|
|
|
{
|
|
|
|
os << line << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmCTestBuildHandler::IsLaunchedErrorFile(const char* fname)
|
|
|
|
{
|
|
|
|
// error-{hash}.xml
|
2013-11-20 05:12:00 +04:00
|
|
|
return (cmHasLiteralPrefix(fname, "error-") &&
|
2009-02-11 23:18:08 +03:00
|
|
|
strcmp(fname+strlen(fname)-4, ".xml") == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmCTestBuildHandler::IsLaunchedWarningFile(const char* fname)
|
|
|
|
{
|
|
|
|
// warning-{hash}.xml
|
2013-11-20 05:12:00 +04:00
|
|
|
return (cmHasLiteralPrefix(fname, "warning-") &&
|
2009-02-11 23:18:08 +03:00
|
|
|
strcmp(fname+strlen(fname)-4, ".xml") == 0);
|
|
|
|
}
|
|
|
|
|
2005-06-10 16:56:56 +04:00
|
|
|
//######################################################################
|
|
|
|
//######################################################################
|
|
|
|
//######################################################################
|
|
|
|
//######################################################################
|
|
|
|
|
2009-02-11 23:18:08 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
class cmCTestBuildHandler::LaunchHelper
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LaunchHelper(cmCTestBuildHandler* handler);
|
|
|
|
~LaunchHelper();
|
|
|
|
private:
|
|
|
|
cmCTestBuildHandler* Handler;
|
|
|
|
cmCTest* CTest;
|
|
|
|
|
2009-02-12 21:00:22 +03:00
|
|
|
void WriteLauncherConfig();
|
2009-02-11 23:18:08 +03:00
|
|
|
void WriteScrapeMatchers(const char* purpose,
|
|
|
|
std::vector<std::string> const& matchers);
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCTestBuildHandler::LaunchHelper::LaunchHelper(cmCTestBuildHandler* handler):
|
|
|
|
Handler(handler), CTest(handler->CTest)
|
|
|
|
{
|
|
|
|
std::string tag = this->CTest->GetCurrentTag();
|
|
|
|
if(tag.empty())
|
|
|
|
{
|
|
|
|
// This is not for a dashboard submission, so there is no XML.
|
|
|
|
// Skip enabling the launchers.
|
|
|
|
this->Handler->UseCTestLaunch = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Compute a directory in which to store launcher fragments.
|
|
|
|
std::string& launchDir = this->Handler->CTestLaunchDir;
|
|
|
|
launchDir = this->CTest->GetBinaryDir();
|
|
|
|
launchDir += "/Testing/";
|
|
|
|
launchDir += tag;
|
|
|
|
launchDir += "/Build";
|
|
|
|
|
|
|
|
// Clean out any existing launcher fragments.
|
|
|
|
cmSystemTools::RemoveADirectory(launchDir.c_str());
|
|
|
|
|
|
|
|
if(this->Handler->UseCTestLaunch)
|
|
|
|
{
|
|
|
|
// Enable launcher fragments.
|
|
|
|
cmSystemTools::MakeDirectory(launchDir.c_str());
|
2009-02-12 21:00:22 +03:00
|
|
|
this->WriteLauncherConfig();
|
2009-02-11 23:18:08 +03:00
|
|
|
std::string launchEnv = "CTEST_LAUNCH_LOGS=";
|
|
|
|
launchEnv += launchDir;
|
|
|
|
cmSystemTools::PutEnv(launchEnv.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If not using launchers, make sure they passthru.
|
|
|
|
if(!this->Handler->UseCTestLaunch)
|
|
|
|
{
|
|
|
|
cmSystemTools::UnsetEnv("CTEST_LAUNCH_LOGS");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCTestBuildHandler::LaunchHelper::~LaunchHelper()
|
|
|
|
{
|
|
|
|
if(this->Handler->UseCTestLaunch)
|
|
|
|
{
|
|
|
|
cmSystemTools::UnsetEnv("CTEST_LAUNCH_LOGS");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2009-02-12 21:00:22 +03:00
|
|
|
void cmCTestBuildHandler::LaunchHelper::WriteLauncherConfig()
|
2009-02-11 23:18:08 +03:00
|
|
|
{
|
|
|
|
this->WriteScrapeMatchers("Warning",
|
|
|
|
this->Handler->ReallyCustomWarningMatches);
|
|
|
|
this->WriteScrapeMatchers("WarningSuppress",
|
|
|
|
this->Handler->ReallyCustomWarningExceptions);
|
2009-02-12 21:00:22 +03:00
|
|
|
|
|
|
|
// Give some testing configuration information to the launcher.
|
|
|
|
std::string fname = this->Handler->CTestLaunchDir;
|
|
|
|
fname += "/CTestLaunchConfig.cmake";
|
|
|
|
cmGeneratedFileStream fout(fname.c_str());
|
|
|
|
std::string srcdir = this->CTest->GetCTestConfiguration("SourceDirectory");
|
|
|
|
fout << "set(CTEST_SOURCE_DIRECTORY \"" << srcdir << "\")\n";
|
2009-02-11 23:18:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmCTestBuildHandler::LaunchHelper
|
|
|
|
::WriteScrapeMatchers(const char* purpose,
|
|
|
|
std::vector<std::string> const& matchers)
|
|
|
|
{
|
|
|
|
if(matchers.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::string fname = this->Handler->CTestLaunchDir;
|
|
|
|
fname += "/Custom";
|
|
|
|
fname += purpose;
|
|
|
|
fname += ".txt";
|
|
|
|
cmGeneratedFileStream fout(fname.c_str());
|
|
|
|
for(std::vector<std::string>::const_iterator mi = matchers.begin();
|
|
|
|
mi != matchers.end(); ++mi)
|
|
|
|
{
|
|
|
|
fout << *mi << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int cmCTestBuildHandler::RunMakeCommand(const char* command,
|
2014-01-04 09:47:13 +04:00
|
|
|
int* retVal, const char* dir, int timeout, std::ostream& ofs)
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
|
|
|
// First generate the command and arguments
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string> args = cmSystemTools::ParseArguments(command);
|
2005-06-01 23:59:22 +04:00
|
|
|
|
|
|
|
if(args.size() < 1)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<const char*> argv;
|
2014-02-10 09:21:34 +04:00
|
|
|
for(std::vector<std::string>::const_iterator a = args.begin();
|
2005-06-01 23:59:22 +04:00
|
|
|
a != args.end(); ++a)
|
|
|
|
{
|
|
|
|
argv.push_back(a->c_str());
|
|
|
|
}
|
|
|
|
argv.push_back(0);
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, "Run command:");
|
2005-06-10 16:56:56 +04:00
|
|
|
std::vector<const char*>::iterator ait;
|
2005-06-10 17:01:37 +04:00
|
|
|
for ( ait = argv.begin(); ait != argv.end() && *ait; ++ ait )
|
2005-06-10 16:56:56 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, " \"" << *ait << "\"");
|
2005-06-10 16:56:56 +04:00
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, std::endl);
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2009-02-11 23:18:08 +03:00
|
|
|
// Optionally use make rule launchers to record errors and warnings.
|
|
|
|
LaunchHelper launchHelper(this);
|
|
|
|
static_cast<void>(launchHelper);
|
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
// Now create process object
|
|
|
|
cmsysProcess* cp = cmsysProcess_New();
|
|
|
|
cmsysProcess_SetCommand(cp, &*argv.begin());
|
|
|
|
cmsysProcess_SetWorkingDirectory(cp, dir);
|
|
|
|
cmsysProcess_SetOption(cp, cmsysProcess_Option_HideWindow, 1);
|
|
|
|
cmsysProcess_SetTimeout(cp, timeout);
|
|
|
|
cmsysProcess_Execute(cp);
|
|
|
|
|
|
|
|
// Initialize tick's
|
|
|
|
std::string::size_type tick = 0;
|
|
|
|
const std::string::size_type tick_len = 1024;
|
|
|
|
|
|
|
|
char* data;
|
|
|
|
int length;
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT,
|
2006-03-09 19:17:10 +03:00
|
|
|
" Each symbol represents " << tick_len << " bytes of output."
|
|
|
|
<< std::endl
|
2009-02-11 23:18:08 +03:00
|
|
|
<< (this->UseCTestLaunch? "" :
|
|
|
|
" '!' represents an error and '*' a warning.\n")
|
2005-06-01 23:59:22 +04:00
|
|
|
<< " " << std::flush);
|
|
|
|
|
|
|
|
// Initialize building structures
|
2006-03-10 23:03:09 +03:00
|
|
|
this->BuildProcessingQueue.clear();
|
|
|
|
this->OutputLineCounter = 0;
|
|
|
|
this->ErrorsAndWarnings.clear();
|
|
|
|
this->TotalErrors = 0;
|
|
|
|
this->TotalWarnings = 0;
|
|
|
|
this->BuildOutputLogSize = 0;
|
|
|
|
this->LastTickChar = '.';
|
|
|
|
this->WarningQuotaReached = false;
|
|
|
|
this->ErrorQuotaReached = false;
|
2005-06-01 23:59:22 +04:00
|
|
|
|
|
|
|
// For every chunk of data
|
2006-01-27 21:46:33 +03:00
|
|
|
int res;
|
|
|
|
while((res = cmsysProcess_WaitForData(cp, &data, &length, 0)))
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
|
|
|
// Replace '\0' with '\n', since '\0' does not really make sense. This is
|
|
|
|
// for Visual Studio output
|
|
|
|
for(int cc =0; cc < length; ++cc)
|
|
|
|
{
|
|
|
|
if(data[cc] == 0)
|
|
|
|
{
|
|
|
|
data[cc] = '\n';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process the chunk of data
|
2006-01-27 21:46:33 +03:00
|
|
|
if ( res == cmsysProcess_Pipe_STDERR )
|
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
this->ProcessBuffer(data, length, tick, tick_len, ofs,
|
2006-03-10 23:03:09 +03:00
|
|
|
&this->BuildProcessingErrorQueue);
|
2006-01-27 21:46:33 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
this->ProcessBuffer(data, length, tick, tick_len, ofs,
|
2006-03-10 23:03:09 +03:00
|
|
|
&this->BuildProcessingQueue);
|
2006-01-27 21:46:33 +03:00
|
|
|
}
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
this->ProcessBuffer(0, 0, tick, tick_len, ofs, &this->BuildProcessingQueue);
|
2006-03-09 19:17:10 +03:00
|
|
|
this->ProcessBuffer(0, 0, tick, tick_len, ofs,
|
2006-03-10 23:03:09 +03:00
|
|
|
&this->BuildProcessingErrorQueue);
|
|
|
|
cmCTestLog(this->CTest, OUTPUT, " Size of output: "
|
2010-06-27 19:22:05 +04:00
|
|
|
<< ((this->BuildOutputLogSize + 512) / 1024) << "K" << std::endl);
|
2005-06-01 23:59:22 +04:00
|
|
|
|
|
|
|
// Properly handle output of the build command
|
|
|
|
cmsysProcess_WaitForExit(cp, 0);
|
|
|
|
int result = cmsysProcess_GetState(cp);
|
|
|
|
|
|
|
|
if(result == cmsysProcess_State_Exited)
|
|
|
|
{
|
2007-03-28 19:06:34 +04:00
|
|
|
if (retVal)
|
2007-03-20 21:31:34 +03:00
|
|
|
{
|
2007-03-28 19:06:34 +04:00
|
|
|
*retVal = cmsysProcess_GetExitValue(cp);
|
|
|
|
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
|
|
|
|
"Command exited with the value: " << *retVal << std::endl);
|
|
|
|
// if a non zero return value
|
|
|
|
if (*retVal)
|
|
|
|
{
|
2007-04-04 21:06:20 +04:00
|
|
|
// If there was an error running command, report that on the
|
|
|
|
// dashboard.
|
2007-03-28 19:06:34 +04:00
|
|
|
cmCTestBuildErrorWarning errorwarning;
|
|
|
|
errorwarning.LogLine = 1;
|
2012-08-13 21:42:58 +04:00
|
|
|
errorwarning.Text
|
2007-03-28 19:06:34 +04:00
|
|
|
= "*** WARNING non-zero return value in ctest from: ";
|
|
|
|
errorwarning.Text += argv[0];
|
|
|
|
errorwarning.PreContext = "";
|
|
|
|
errorwarning.PostContext = "";
|
|
|
|
errorwarning.Error = false;
|
|
|
|
this->ErrorsAndWarnings.push_back(errorwarning);
|
|
|
|
this->TotalWarnings ++;
|
|
|
|
}
|
2007-03-20 21:31:34 +03:00
|
|
|
}
|
2007-03-28 19:07:36 +04:00
|
|
|
}
|
|
|
|
else if(result == cmsysProcess_State_Exception)
|
|
|
|
{
|
|
|
|
if (retVal)
|
2007-03-28 19:06:34 +04:00
|
|
|
{
|
2007-03-28 19:07:36 +04:00
|
|
|
*retVal = cmsysProcess_GetExitException(cp);
|
|
|
|
cmCTestLog(this->CTest, WARNING, "There was an exception: " << *retVal
|
|
|
|
<< std::endl);
|
|
|
|
}
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
|
|
|
else if(result == cmsysProcess_State_Expired)
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, WARNING, "There was a timeout" << std::endl);
|
2006-03-09 19:17:10 +03:00
|
|
|
}
|
2005-06-01 23:59:22 +04:00
|
|
|
else if(result == cmsysProcess_State_Error)
|
|
|
|
{
|
|
|
|
// If there was an error running command, report that on the dashboard.
|
|
|
|
cmCTestBuildErrorWarning errorwarning;
|
2006-03-10 23:03:09 +03:00
|
|
|
errorwarning.LogLine = 1;
|
|
|
|
errorwarning.Text = "*** ERROR executing: ";
|
|
|
|
errorwarning.Text += cmsysProcess_GetErrorString(cp);
|
|
|
|
errorwarning.PreContext = "";
|
|
|
|
errorwarning.PostContext = "";
|
|
|
|
errorwarning.Error = true;
|
|
|
|
this->ErrorsAndWarnings.push_back(errorwarning);
|
|
|
|
this->TotalErrors ++;
|
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE, "There was an error: "
|
2006-03-09 19:17:10 +03:00
|
|
|
<< cmsysProcess_GetErrorString(cp) << std::endl);
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmsysProcess_Delete(cp);
|
2009-01-14 21:48:03 +03:00
|
|
|
return result;
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
|
|
|
|
2005-06-10 16:56:56 +04:00
|
|
|
//######################################################################
|
|
|
|
//######################################################################
|
|
|
|
//######################################################################
|
|
|
|
//######################################################################
|
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
//----------------------------------------------------------------------
|
2006-03-09 19:17:10 +03:00
|
|
|
void cmCTestBuildHandler::ProcessBuffer(const char* data, int length,
|
2014-01-04 09:47:13 +04:00
|
|
|
size_t& tick, size_t tick_len, std::ostream& ofs,
|
2006-03-09 19:17:10 +03:00
|
|
|
t_BuildProcessingQueueType* queue)
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
|
|
|
const std::string::size_type tick_line_len = 50;
|
2005-06-02 19:47:10 +04:00
|
|
|
const char* ptr;
|
|
|
|
for ( ptr = data; ptr < data+length; ptr ++ )
|
|
|
|
{
|
2006-01-27 21:46:33 +03:00
|
|
|
queue->push_back(*ptr);
|
2005-06-02 19:47:10 +04:00
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
this->BuildOutputLogSize += length;
|
2005-06-01 23:59:22 +04:00
|
|
|
|
|
|
|
// until there are any lines left in the buffer
|
|
|
|
while ( 1 )
|
|
|
|
{
|
|
|
|
// Find the end of line
|
|
|
|
t_BuildProcessingQueueType::iterator it;
|
2006-01-27 21:46:33 +03:00
|
|
|
for ( it = queue->begin();
|
|
|
|
it != queue->end();
|
2005-06-01 23:59:22 +04:00
|
|
|
++ it )
|
|
|
|
{
|
|
|
|
if ( *it == '\n' )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2005-06-02 19:47:10 +04:00
|
|
|
|
2006-03-09 19:17:10 +03:00
|
|
|
// Once certain number of errors or warnings reached, ignore future errors
|
|
|
|
// or warnings.
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( this->TotalWarnings >= this->MaxWarnings )
|
2005-06-02 19:47:10 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->WarningQuotaReached = true;
|
2005-06-02 19:47:10 +04:00
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( this->TotalErrors >= this->MaxErrors )
|
2005-06-02 19:47:10 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->ErrorQuotaReached = true;
|
2005-06-02 19:47:10 +04:00
|
|
|
}
|
|
|
|
|
2005-06-01 23:59:22 +04:00
|
|
|
// If the end of line was found
|
2006-01-27 21:46:33 +03:00
|
|
|
if ( it != queue->end() )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
|
|
|
// Create a contiguous array for the line
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CurrentProcessingLine.clear();
|
2005-06-02 19:47:10 +04:00
|
|
|
t_BuildProcessingQueueType::iterator cit;
|
2006-01-27 21:46:33 +03:00
|
|
|
for ( cit = queue->begin(); cit != it; ++cit )
|
2005-06-02 19:47:10 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CurrentProcessingLine.push_back(*cit);
|
2005-06-02 19:47:10 +04:00
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CurrentProcessingLine.push_back(0);
|
|
|
|
const char* line = &*this->CurrentProcessingLine.begin();
|
2005-06-01 23:59:22 +04:00
|
|
|
|
|
|
|
// Process the line
|
|
|
|
int lineType = this->ProcessSingleLine(line);
|
|
|
|
|
|
|
|
// Erase the line from the queue
|
2006-01-27 21:46:33 +03:00
|
|
|
queue->erase(queue->begin(), it+1);
|
2005-06-01 23:59:22 +04:00
|
|
|
|
|
|
|
// Depending on the line type, produce error or warning, or nothing
|
|
|
|
cmCTestBuildErrorWarning errorwarning;
|
|
|
|
bool found = false;
|
|
|
|
switch ( lineType )
|
|
|
|
{
|
|
|
|
case b_WARNING_LINE:
|
2006-03-10 23:03:09 +03:00
|
|
|
this->LastTickChar = '*';
|
|
|
|
errorwarning.Error = false;
|
2005-06-01 23:59:22 +04:00
|
|
|
found = true;
|
2006-03-10 23:03:09 +03:00
|
|
|
this->TotalWarnings ++;
|
2005-06-01 23:59:22 +04:00
|
|
|
break;
|
|
|
|
case b_ERROR_LINE:
|
2006-03-10 23:03:09 +03:00
|
|
|
this->LastTickChar = '!';
|
|
|
|
errorwarning.Error = true;
|
2005-06-01 23:59:22 +04:00
|
|
|
found = true;
|
2006-03-10 23:03:09 +03:00
|
|
|
this->TotalErrors ++;
|
2005-06-01 23:59:22 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( found )
|
|
|
|
{
|
|
|
|
// This is an error or warning, so generate report
|
2006-03-10 23:03:09 +03:00
|
|
|
errorwarning.LogLine = static_cast<int>(this->OutputLineCounter+1);
|
|
|
|
errorwarning.Text = line;
|
|
|
|
errorwarning.PreContext = "";
|
|
|
|
errorwarning.PostContext = "";
|
2005-06-01 23:59:22 +04:00
|
|
|
|
|
|
|
// Copy pre-context to report
|
2014-02-10 09:21:34 +04:00
|
|
|
std::deque<std::string>::iterator pcit;
|
2006-03-10 23:03:09 +03:00
|
|
|
for ( pcit = this->PreContext.begin();
|
|
|
|
pcit != this->PreContext.end();
|
2006-03-09 19:17:10 +03:00
|
|
|
++pcit )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
errorwarning.PreContext += *pcit + "\n";
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
this->PreContext.clear();
|
2005-06-01 23:59:22 +04:00
|
|
|
|
|
|
|
// Store report
|
2006-03-10 23:03:09 +03:00
|
|
|
this->ErrorsAndWarnings.push_back(errorwarning);
|
|
|
|
this->LastErrorOrWarning = this->ErrorsAndWarnings.end()-1;
|
|
|
|
this->PostContextCount = 0;
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// This is not an error or warning.
|
|
|
|
// So, figure out if this is a post-context line
|
2012-08-13 21:42:58 +04:00
|
|
|
if ( this->ErrorsAndWarnings.size() &&
|
2006-11-10 00:07:38 +03:00
|
|
|
this->LastErrorOrWarning != this->ErrorsAndWarnings.end() &&
|
|
|
|
this->PostContextCount < this->MaxPostContext )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->PostContextCount ++;
|
|
|
|
this->LastErrorOrWarning->PostContext += line;
|
|
|
|
if ( this->PostContextCount < this->MaxPostContext )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->LastErrorOrWarning->PostContext += "\n";
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Otherwise store pre-context for the next error
|
2006-03-10 23:03:09 +03:00
|
|
|
this->PreContext.push_back(line);
|
|
|
|
if ( this->PreContext.size() > this->MaxPreContext )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->PreContext.erase(this->PreContext.begin(),
|
|
|
|
this->PreContext.end()-this->MaxPreContext);
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
this->OutputLineCounter ++;
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now that the buffer is processed, display missing ticks
|
|
|
|
int tickDisplayed = false;
|
2006-03-10 23:03:09 +03:00
|
|
|
while ( this->BuildOutputLogSize > (tick * tick_len) )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
|
|
|
tick ++;
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, this->LastTickChar);
|
2005-06-01 23:59:22 +04:00
|
|
|
tickDisplayed = true;
|
|
|
|
if ( tick % tick_line_len == 0 && tick > 0 )
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, " Size: "
|
2010-06-27 19:22:05 +04:00
|
|
|
<< ((this->BuildOutputLogSize + 512) / 1024) << "K" << std::endl
|
2005-06-01 23:59:22 +04:00
|
|
|
<< " ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( tickDisplayed )
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
this->LastTickChar = '.';
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// And if this is verbose output, display the content of the chunk
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
|
|
|
|
cmCTestLogWrite(data, length));
|
2005-06-01 23:59:22 +04:00
|
|
|
|
|
|
|
// Always store the chunk to the file
|
|
|
|
ofs << cmCTestLogWrite(data, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int cmCTestBuildHandler::ProcessSingleLine(const char* data)
|
|
|
|
{
|
2009-02-11 23:18:08 +03:00
|
|
|
if(this->UseCTestLaunch)
|
|
|
|
{
|
|
|
|
// No log scraping when using launchers.
|
|
|
|
return b_REGULAR_LINE;
|
|
|
|
}
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, DEBUG, "Line: [" << data << "]" << std::endl);
|
2005-06-01 23:59:22 +04:00
|
|
|
|
|
|
|
std::vector<cmsys::RegularExpression>::iterator it;
|
|
|
|
|
|
|
|
int warningLine = 0;
|
|
|
|
int errorLine = 0;
|
|
|
|
|
|
|
|
// Check for regular expressions
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( !this->ErrorQuotaReached )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
// Errors
|
2006-04-27 23:23:39 +04:00
|
|
|
int wrxCnt = 0;
|
2006-03-10 23:03:09 +03:00
|
|
|
for ( it = this->ErrorMatchRegex.begin();
|
|
|
|
it != this->ErrorMatchRegex.end();
|
2006-03-09 19:17:10 +03:00
|
|
|
++ it )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
2005-06-02 19:47:10 +04:00
|
|
|
if ( it->find(data) )
|
|
|
|
{
|
|
|
|
errorLine = 1;
|
2006-04-27 23:23:39 +04:00
|
|
|
cmCTestLog(this->CTest, DEBUG, " Error Line: " << data
|
2006-05-11 20:00:40 +04:00
|
|
|
<< " (matches: " << this->CustomErrorMatches[wrxCnt] << ")"
|
2006-04-27 23:23:39 +04:00
|
|
|
<< std::endl);
|
2005-06-02 19:47:10 +04:00
|
|
|
break;
|
|
|
|
}
|
2006-04-27 23:23:39 +04:00
|
|
|
wrxCnt ++;
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
2006-03-09 19:17:10 +03:00
|
|
|
// Error exceptions
|
2006-04-27 23:23:39 +04:00
|
|
|
wrxCnt = 0;
|
2006-03-10 23:03:09 +03:00
|
|
|
for ( it = this->ErrorExceptionRegex.begin();
|
|
|
|
it != this->ErrorExceptionRegex.end();
|
2006-03-09 19:17:10 +03:00
|
|
|
++ it )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
2005-06-02 19:47:10 +04:00
|
|
|
if ( it->find(data) )
|
|
|
|
{
|
|
|
|
errorLine = 0;
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, DEBUG, " Not an error Line: " << data
|
2006-04-27 23:23:39 +04:00
|
|
|
<< " (matches: " << this->CustomErrorExceptions[wrxCnt] << ")"
|
2006-03-09 19:17:10 +03:00
|
|
|
<< std::endl);
|
2005-06-02 19:47:10 +04:00
|
|
|
break;
|
|
|
|
}
|
2006-04-27 23:23:39 +04:00
|
|
|
wrxCnt ++;
|
2005-06-02 19:47:10 +04:00
|
|
|
}
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( !this->WarningQuotaReached )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
2005-06-02 19:47:10 +04:00
|
|
|
// Warnings
|
2006-04-27 23:23:39 +04:00
|
|
|
int wrxCnt = 0;
|
2006-03-10 23:03:09 +03:00
|
|
|
for ( it = this->WarningMatchRegex.begin();
|
|
|
|
it != this->WarningMatchRegex.end();
|
2006-03-09 19:17:10 +03:00
|
|
|
++ it )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
2005-06-02 19:47:10 +04:00
|
|
|
if ( it->find(data) )
|
|
|
|
{
|
|
|
|
warningLine = 1;
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, DEBUG,
|
2006-04-27 23:23:39 +04:00
|
|
|
" Warning Line: " << data
|
|
|
|
<< " (matches: " << this->CustomWarningMatches[wrxCnt] << ")"
|
|
|
|
<< std::endl);
|
2005-06-02 19:47:10 +04:00
|
|
|
break;
|
2006-03-09 19:17:10 +03:00
|
|
|
}
|
2006-04-27 23:23:39 +04:00
|
|
|
wrxCnt ++;
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
2005-06-02 19:47:10 +04:00
|
|
|
|
2006-04-27 23:23:39 +04:00
|
|
|
wrxCnt = 0;
|
2005-06-02 19:47:10 +04:00
|
|
|
// Warning exceptions
|
2006-03-10 23:03:09 +03:00
|
|
|
for ( it = this->WarningExceptionRegex.begin();
|
|
|
|
it != this->WarningExceptionRegex.end();
|
2006-03-09 19:17:10 +03:00
|
|
|
++ it )
|
2005-06-01 23:59:22 +04:00
|
|
|
{
|
2005-06-02 19:47:10 +04:00
|
|
|
if ( it->find(data) )
|
|
|
|
{
|
|
|
|
warningLine = 0;
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, DEBUG, " Not a warning Line: " << data
|
2006-04-27 23:23:39 +04:00
|
|
|
<< " (matches: " << this->CustomWarningExceptions[wrxCnt] << ")"
|
2006-03-09 19:17:10 +03:00
|
|
|
<< std::endl);
|
2005-06-02 19:47:10 +04:00
|
|
|
break;
|
2006-03-09 19:17:10 +03:00
|
|
|
}
|
2006-04-27 23:23:39 +04:00
|
|
|
wrxCnt ++;
|
2005-06-02 19:47:10 +04:00
|
|
|
}
|
2005-06-01 23:59:22 +04:00
|
|
|
}
|
|
|
|
if ( errorLine )
|
|
|
|
{
|
|
|
|
return b_ERROR_LINE;
|
|
|
|
}
|
|
|
|
if ( warningLine )
|
|
|
|
{
|
|
|
|
return b_WARNING_LINE;
|
|
|
|
}
|
|
|
|
return b_REGULAR_LINE;
|
|
|
|
}
|
|
|
|
|