2002-12-17 05:19:21 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmCTest.h"
|
2003-12-02 03:25:51 +03:00
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
#include <cmsys/Directory.hxx>
|
2002-12-17 05:19:21 +03:00
|
|
|
#include "cmListFileCache.h"
|
2004-01-26 21:57:26 +03:00
|
|
|
#include "cmGlob.h"
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-12-16 01:26:00 +03:00
|
|
|
#include "cmCTestSubmit.h"
|
|
|
|
#include "curl/curl.h"
|
2003-01-07 07:13:15 +03:00
|
|
|
|
2003-08-08 03:23:49 +04:00
|
|
|
#include <cmsys/RegularExpression.hxx>
|
|
|
|
#include <cmsys/Process.h>
|
2003-08-09 01:10:37 +04:00
|
|
|
#include <cmsys/Base64.h>
|
2003-08-08 03:23:49 +04:00
|
|
|
|
2003-12-09 16:22:55 +03:00
|
|
|
#include <stdlib.h>
|
2002-12-17 05:19:21 +03:00
|
|
|
#include <time.h>
|
2003-04-08 18:57:30 +04:00
|
|
|
#include <math.h>
|
2003-04-09 16:08:55 +04:00
|
|
|
#include <float.h>
|
2004-01-28 01:12:41 +03:00
|
|
|
#include "cmDynamicLoader.h"
|
2003-04-08 18:57:30 +04:00
|
|
|
|
2003-04-10 17:07:26 +04:00
|
|
|
#define SAFEDIV(x,y) (((y)!=0)?((x)/(y)):(0))
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-12-17 16:36:10 +03:00
|
|
|
// provide some more detailed info on the return code for ctest
|
|
|
|
#define CTEST_UPDATE_ERRORS 0x01
|
|
|
|
#define CTEST_CONFIGURE_ERRORS 0x02
|
|
|
|
#define CTEST_BUILD_ERRORS 0x04
|
|
|
|
#define CTEST_TEST_ERRORS 0x08
|
|
|
|
#define CTEST_MEMORY_ERRORS 0x10
|
|
|
|
|
2003-02-28 20:42:50 +03:00
|
|
|
static struct tm* GetNightlyTime(std::string str)
|
|
|
|
{
|
|
|
|
struct tm* lctime;
|
|
|
|
time_t tctime = time(0);
|
|
|
|
//Convert the nightly start time to seconds. Since we are
|
|
|
|
//providing only a time and a timezone, the current date of
|
|
|
|
//the local machine is assumed. Consequently, nightlySeconds
|
|
|
|
//is the time at which the nightly dashboard was opened or
|
|
|
|
//will be opened on the date of the current client machine.
|
|
|
|
//As such, this time may be in the past or in the future.
|
|
|
|
time_t ntime = curl_getdate(str.c_str(), &tctime);
|
|
|
|
tctime = time(0);
|
|
|
|
//std::cout << "Seconds: " << tctime << std::endl;
|
|
|
|
if ( ntime > tctime )
|
|
|
|
{
|
|
|
|
// If nightlySeconds is in the past, this is the current
|
|
|
|
// open dashboard, then return nightlySeconds. If
|
|
|
|
// nightlySeconds is in the future, this is the next
|
|
|
|
// dashboard to be opened, so subtract 24 hours to get the
|
|
|
|
// time of the current open dashboard
|
|
|
|
ntime -= (24 * 60 * 60 );
|
|
|
|
//std::cout << "Pick yesterday" << std::endl;
|
|
|
|
}
|
|
|
|
//std::cout << "nightlySeconds: " << ntime << std::endl;
|
|
|
|
lctime = gmtime(&ntime);
|
|
|
|
return lctime;
|
|
|
|
}
|
|
|
|
|
2004-01-16 01:07:40 +03:00
|
|
|
static std::string CleanString(const std::string& str)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-10-16 15:49:32 +04:00
|
|
|
std::string::size_type spos = str.find_first_not_of(" \n\t\r\f\v");
|
|
|
|
std::string::size_type epos = str.find_last_not_of(" \n\t\r\f\v");
|
2002-12-17 05:19:21 +03:00
|
|
|
if ( spos == str.npos )
|
|
|
|
{
|
|
|
|
return std::string();
|
|
|
|
}
|
|
|
|
if ( epos != str.npos )
|
|
|
|
{
|
|
|
|
epos = epos - spos + 1;
|
|
|
|
}
|
|
|
|
return str.substr(spos, epos);
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::string CurrentTime()
|
|
|
|
{
|
|
|
|
time_t currenttime = time(0);
|
2003-01-12 05:47:12 +03:00
|
|
|
struct tm* t = localtime(¤ttime);
|
|
|
|
//return ::CleanString(ctime(¤ttime));
|
|
|
|
char current_time[1024];
|
2003-01-17 16:56:20 +03:00
|
|
|
strftime(current_time, 1000, "%a %b %d %H:%M:%S %Z %Y", t);
|
2003-01-12 05:47:12 +03:00
|
|
|
//std::cout << "Current_Time: " << current_time << std::endl;
|
|
|
|
return ::CleanString(current_time);
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char* cmCTestErrorMatches[] = {
|
|
|
|
"^[Bb]us [Ee]rror",
|
|
|
|
"^[Ss]egmentation [Vv]iolation",
|
|
|
|
"^[Ss]egmentation [Ff]ault",
|
|
|
|
"([^ :]+):([0-9]+): ([^ \\t])",
|
|
|
|
"([^:]+): error[ \\t]*[0-9]+[ \\t]*:",
|
|
|
|
"^Error ([0-9]+):",
|
2003-03-20 02:28:25 +03:00
|
|
|
"^Fatal",
|
|
|
|
"^Error: ",
|
2002-12-17 05:19:21 +03:00
|
|
|
"^Error ",
|
2003-04-17 21:13:38 +04:00
|
|
|
"[0-9] ERROR: ",
|
2002-12-17 05:19:21 +03:00
|
|
|
"^\"[^\"]+\", 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)",
|
|
|
|
"([^:]+)\\(([^\\)]+)\\) : (error|fatal error|catastrophic error)",
|
|
|
|
"^fatal error C[0-9]+:",
|
|
|
|
": syntax error ",
|
|
|
|
"^collect2: ld returned 1 exit status",
|
|
|
|
"Unsatisfied symbols:",
|
|
|
|
"Undefined symbols:",
|
|
|
|
"^Undefined[ \\t]+first referenced",
|
|
|
|
"^CMake Error:",
|
|
|
|
":[ \\t]cannot find",
|
2003-03-20 02:28:25 +03:00
|
|
|
":[ \\t]can't find",
|
|
|
|
": \\*\\*\\* No rule to make target \\`.*\\'. Stop",
|
|
|
|
": Invalid loader fixup for symbol",
|
|
|
|
": internal link edit command failed",
|
|
|
|
": Unrecognized option \\`.*\\'",
|
2003-04-18 18:00:01 +04:00
|
|
|
"\", line [0-9]+\\.[0-9]+: [0-9]+-[0-9]+ \\([^W]\\)",
|
2003-12-17 17:25:13 +03:00
|
|
|
"ld: 0706-006 Cannot find or open library file: -l ",
|
2002-12-17 05:19:21 +03:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char* cmCTestErrorExceptions[] = {
|
2003-03-20 02:28:25 +03:00
|
|
|
"instantiated from ",
|
|
|
|
"candidates are:",
|
|
|
|
": warning",
|
|
|
|
"makefile:",
|
|
|
|
"Makefile:",
|
|
|
|
":[ \\t]+Where:",
|
2002-12-17 05:19:21 +03:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char* cmCTestWarningMatches[] = {
|
|
|
|
"([^ :]+):([0-9]+): warning:",
|
|
|
|
"^cc[^C]*CC: WARNING File = ([^,]+), Line = ([0-9]+)",
|
|
|
|
"^ld([^:])*:([ \\t])*WARNING([^:])*:",
|
|
|
|
"([^:]+): warning ([0-9]+):",
|
|
|
|
"^\"[^\"]+\", line [0-9]+: [Ww]arning",
|
|
|
|
"([^:]+): warning[ \\t]*[0-9]+[ \\t]*:",
|
|
|
|
"^Warning ([0-9]+):",
|
|
|
|
"^Warning ",
|
2003-01-16 22:59:40 +03:00
|
|
|
"WARNING: ",
|
2002-12-17 05:19:21 +03:00
|
|
|
"([^ :]+) : warning",
|
|
|
|
"([^:]+): warning",
|
2003-04-18 18:01:58 +04:00
|
|
|
"\", line [0-9]+\\.[0-9]+: [0-9]+-[0-9]+ \\(W\\)",
|
2002-12-17 05:19:21 +03:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char* cmCTestWarningExceptions[] = {
|
|
|
|
"/usr/openwin/include/X11/Xlib\\.h:[0-9]+: warning: ANSI C\\+\\+ forbids declaration",
|
|
|
|
"/usr/openwin/include/X11/Xutil\\.h:[0-9]+: warning: ANSI C\\+\\+ forbids declaration",
|
|
|
|
"/usr/openwin/include/X11/XResource\\.h:[0-9]+: warning: ANSI C\\+\\+ forbids declaration",
|
|
|
|
"WARNING 84 :",
|
|
|
|
"WARNING 47 :",
|
|
|
|
"makefile:",
|
|
|
|
"Makefile:",
|
|
|
|
"warning: Clock skew detected. Your build may be incomplete.",
|
|
|
|
"/usr/openwin/include/GL/[^:]+:",
|
|
|
|
"bind_at_load",
|
|
|
|
"XrmQGetResource",
|
|
|
|
"IceFlush",
|
2003-03-20 02:28:25 +03:00
|
|
|
"warning LNK4089: all references to [^ \\t]+ discarded by .OPT:REF",
|
2002-12-17 05:19:21 +03:00
|
|
|
"ld32: WARNING 85: definition of dataKey in",
|
2004-01-09 18:13:18 +03:00
|
|
|
"cc: warning 422: Unknown option \"\\+b",
|
2003-11-07 00:38:32 +03:00
|
|
|
"_with_warning_C",
|
2002-12-17 05:19:21 +03:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2003-12-16 01:26:00 +03:00
|
|
|
static const char* cmCTestMemCheckResultStrings[] = {
|
|
|
|
"ABR",
|
|
|
|
"ABW",
|
|
|
|
"ABWL",
|
|
|
|
"COR",
|
|
|
|
"EXU",
|
|
|
|
"FFM",
|
|
|
|
"FIM",
|
|
|
|
"FMM",
|
|
|
|
"FMR",
|
|
|
|
"FMW",
|
|
|
|
"FUM",
|
|
|
|
"IPR",
|
|
|
|
"IPW",
|
|
|
|
"MAF",
|
|
|
|
"MLK",
|
|
|
|
"MPK",
|
|
|
|
"NPR",
|
|
|
|
"ODS",
|
|
|
|
"PAR",
|
|
|
|
"PLK",
|
|
|
|
"UMC",
|
|
|
|
"UMR",
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
std::string cmCTest::MakeXMLSafe(const std::string& str)
|
|
|
|
{
|
|
|
|
cmOStringStream ost;
|
2003-12-30 15:55:58 +03:00
|
|
|
// By uncommenting the lcnt code, it will put newline every 120 characters
|
|
|
|
//int lcnt = 0;
|
2003-05-28 17:21:37 +04:00
|
|
|
for (std::string::size_type pos = 0; pos < str.size(); pos ++ )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-04-02 00:31:27 +04:00
|
|
|
unsigned char ch = str[pos];
|
2003-04-08 02:21:04 +04:00
|
|
|
if ( (ch > 126 || ch < 32) && ch != 9 && ch != 10 && ch != 13 )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2004-01-21 22:06:44 +03:00
|
|
|
char buffer[33];
|
2003-12-30 15:55:58 +03:00
|
|
|
sprintf(buffer, "<%d>", (int)ch);
|
2003-04-02 00:31:27 +04:00
|
|
|
//sprintf(buffer, "&#x%0x;", (unsigned int)ch);
|
2002-12-17 05:19:21 +03:00
|
|
|
ost << buffer;
|
2003-12-30 15:55:58 +03:00
|
|
|
//lcnt += 4;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch ( ch )
|
|
|
|
{
|
|
|
|
case '&': ost << "&"; break;
|
|
|
|
case '<': ost << "<"; break;
|
|
|
|
case '>': ost << ">"; break;
|
2003-12-30 15:55:58 +03:00
|
|
|
case '\n': ost << "\n";
|
|
|
|
//lcnt = 0;
|
|
|
|
break;
|
2002-12-17 05:19:21 +03:00
|
|
|
default: ost << ch;
|
|
|
|
}
|
2003-12-30 15:55:58 +03:00
|
|
|
//lcnt ++;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2003-12-19 01:42:56 +03:00
|
|
|
//if ( lcnt > 120 )
|
|
|
|
// {
|
|
|
|
// ost << "\n";
|
|
|
|
// lcnt = 0;
|
|
|
|
// }
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
return ost.str();
|
|
|
|
}
|
|
|
|
|
2003-04-02 18:19:45 +04:00
|
|
|
std::string cmCTest::MakeURLSafe(const std::string& str)
|
|
|
|
{
|
|
|
|
cmOStringStream ost;
|
|
|
|
char buffer[10];
|
2003-05-29 17:34:06 +04:00
|
|
|
for ( std::string::size_type pos = 0; pos < str.size(); pos ++ )
|
2003-04-02 18:19:45 +04:00
|
|
|
{
|
|
|
|
unsigned char ch = str[pos];
|
|
|
|
if ( ( ch > 126 || ch < 32 ||
|
|
|
|
ch == '&' ||
|
|
|
|
ch == '%' ||
|
|
|
|
ch == '+' ||
|
|
|
|
ch == '=' ||
|
|
|
|
ch == '@'
|
|
|
|
) && ch != 9 )
|
|
|
|
{
|
|
|
|
sprintf(buffer, "%02x;", (unsigned int)ch);
|
|
|
|
ost << buffer;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ost << ch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ost.str();
|
|
|
|
}
|
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
bool TryExecutable(const char *dir, const char *file,
|
|
|
|
std::string *fullPath, const char *subdir)
|
|
|
|
{
|
|
|
|
// try current directory
|
|
|
|
std::string tryPath;
|
|
|
|
if (dir && strcmp(dir,""))
|
|
|
|
{
|
|
|
|
tryPath = dir;
|
|
|
|
tryPath += "/";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (subdir && strcmp(subdir,""))
|
|
|
|
{
|
|
|
|
tryPath += subdir;
|
|
|
|
tryPath += "/";
|
|
|
|
}
|
|
|
|
|
|
|
|
tryPath += file;
|
|
|
|
if(cmSystemTools::FileExists(tryPath.c_str()))
|
|
|
|
{
|
|
|
|
*fullPath = cmSystemTools::CollapseFullPath(tryPath.c_str());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
tryPath += cmSystemTools::GetExecutableExtension();
|
|
|
|
if(cmSystemTools::FileExists(tryPath.c_str()))
|
|
|
|
{
|
|
|
|
*fullPath = cmSystemTools::CollapseFullPath(tryPath.c_str());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmCTest::cmCTest()
|
|
|
|
{
|
2004-01-13 19:22:47 +03:00
|
|
|
m_BuildNoCMake = false;
|
2004-01-07 22:22:48 +03:00
|
|
|
m_BuildNoClean = false;
|
2004-01-07 19:24:22 +03:00
|
|
|
m_BuildTwoConfig = false;
|
2003-12-02 03:25:51 +03:00
|
|
|
m_UseIncludeRegExp = false;
|
|
|
|
m_UseExcludeRegExp = false;
|
|
|
|
m_UseExcludeRegExpFirst = false;
|
|
|
|
m_Verbose = false;
|
|
|
|
m_DartMode = false;
|
|
|
|
m_ShowOnly = false;
|
|
|
|
m_RunConfigurationScript = false;
|
|
|
|
m_TestModel = cmCTest::EXPERIMENTAL;
|
|
|
|
m_TimeOut = 0;
|
2003-12-16 01:26:00 +03:00
|
|
|
m_CompatibilityMode = 1;
|
2002-12-17 05:19:21 +03:00
|
|
|
int cc;
|
|
|
|
for ( cc=0; cc < cmCTest::LAST_TEST; cc ++ )
|
|
|
|
{
|
|
|
|
m_Tests[cc] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-26 21:57:26 +03:00
|
|
|
int cmCTest::Initialize()
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
m_ToplevelPath = cmSystemTools::GetCurrentWorkingDirectory();
|
2003-12-17 01:30:24 +03:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(m_ToplevelPath);
|
2004-01-26 21:57:26 +03:00
|
|
|
if ( !this->ReadCustomConfigurationFileTree(m_ToplevelPath.c_str()) )
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2004-01-07 03:13:55 +03:00
|
|
|
this->UpdateCTestConfiguration();
|
2002-12-17 05:19:21 +03:00
|
|
|
if ( m_DartMode )
|
|
|
|
{
|
2003-03-20 00:25:11 +03:00
|
|
|
std::string testingDir = m_ToplevelPath + "/Testing";
|
2002-12-17 05:19:21 +03:00
|
|
|
if ( cmSystemTools::FileExists(testingDir.c_str()) )
|
|
|
|
{
|
|
|
|
if ( !cmSystemTools::FileIsDirectory(testingDir.c_str()) )
|
|
|
|
{
|
|
|
|
std::cerr << "File " << testingDir << " is in the place of the testing directory"
|
|
|
|
<< std::endl;
|
2004-01-26 21:57:26 +03:00
|
|
|
return 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( !cmSystemTools::MakeDirectory(testingDir.c_str()) )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot create directory " << testingDir
|
|
|
|
<< std::endl;
|
2004-01-26 21:57:26 +03:00
|
|
|
return 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
std::string tagfile = testingDir + "/TAG";
|
|
|
|
std::ifstream tfin(tagfile.c_str());
|
|
|
|
std::string tag;
|
|
|
|
time_t tctime = time(0);
|
2003-03-20 00:25:11 +03:00
|
|
|
struct tm *lctime = gmtime(&tctime);
|
2004-01-07 03:13:55 +03:00
|
|
|
if ( tfin && cmSystemTools::GetLineFromStream(tfin, tag) )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
int year = 0;
|
|
|
|
int mon = 0;
|
|
|
|
int day = 0;
|
|
|
|
int hour = 0;
|
|
|
|
int min = 0;
|
|
|
|
sscanf(tag.c_str(), "%04d%02d%02d-%02d%02d",
|
|
|
|
&year, &mon, &day, &hour, &min);
|
|
|
|
if ( year != lctime->tm_year + 1900 ||
|
2003-01-07 07:13:15 +03:00
|
|
|
mon != lctime->tm_mon+1 ||
|
2002-12-17 05:19:21 +03:00
|
|
|
day != lctime->tm_mday )
|
|
|
|
{
|
|
|
|
tag = "";
|
|
|
|
}
|
2004-01-07 03:13:55 +03:00
|
|
|
std::string tagmode;
|
|
|
|
if ( cmSystemTools::GetLineFromStream(tfin, tagmode) )
|
|
|
|
{
|
|
|
|
if ( tagmode.size() > 4 && !( m_Tests[cmCTest::START_TEST] || m_Tests[ALL_TEST] ))
|
|
|
|
{
|
|
|
|
m_TestModel = cmCTest::GetTestModelFromString(tagmode.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tfin.close();
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2003-03-20 00:35:02 +03:00
|
|
|
if ( tag.size() == 0 || m_Tests[cmCTest::START_TEST] || m_Tests[ALL_TEST])
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-02-11 17:19:36 +03:00
|
|
|
//std::cout << "TestModel: " << this->GetTestModelString() << std::endl;
|
|
|
|
//std::cout << "TestModel: " << m_TestModel << std::endl;
|
2003-02-11 05:52:01 +03:00
|
|
|
if ( m_TestModel == cmCTest::NIGHTLY )
|
|
|
|
{
|
2003-02-28 20:42:50 +03:00
|
|
|
lctime = ::GetNightlyTime(m_DartConfiguration["NightlyStartTime"]);
|
2003-02-11 05:52:01 +03:00
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
char datestring[100];
|
|
|
|
sprintf(datestring, "%04d%02d%02d-%02d%02d",
|
|
|
|
lctime->tm_year + 1900,
|
2003-01-07 07:13:15 +03:00
|
|
|
lctime->tm_mon+1,
|
2002-12-17 05:19:21 +03:00
|
|
|
lctime->tm_mday,
|
|
|
|
lctime->tm_hour,
|
|
|
|
lctime->tm_min);
|
|
|
|
tag = datestring;
|
|
|
|
std::ofstream ofs(tagfile.c_str());
|
|
|
|
if ( ofs )
|
|
|
|
{
|
|
|
|
ofs << tag << std::endl;
|
2004-01-07 03:13:55 +03:00
|
|
|
ofs << this->GetTestModelString() << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
ofs.close();
|
2004-01-07 03:13:55 +03:00
|
|
|
std::cout << "Create new tag: " << tag << " - "
|
|
|
|
<< this->GetTestModelString() << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
m_CurrentTag = tag;
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
return 1;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
2004-01-07 03:13:55 +03:00
|
|
|
void cmCTest::UpdateCTestConfiguration()
|
|
|
|
{
|
|
|
|
// parse the dart test file
|
|
|
|
std::ifstream fin("DartConfiguration.tcl");
|
|
|
|
if(!fin)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
char buffer[1024];
|
|
|
|
while ( fin )
|
|
|
|
{
|
|
|
|
buffer[0] = 0;
|
|
|
|
fin.getline(buffer, 1023);
|
|
|
|
buffer[1023] = 0;
|
|
|
|
std::string line = ::CleanString(buffer);
|
|
|
|
if(line.size() == 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
while ( fin && (line[line.size()-1] == '\\') )
|
|
|
|
{
|
|
|
|
line = line.substr(0, line.size()-1);
|
|
|
|
buffer[0] = 0;
|
|
|
|
fin.getline(buffer, 1023);
|
|
|
|
buffer[1023] = 0;
|
|
|
|
line += ::CleanString(buffer);
|
|
|
|
}
|
|
|
|
if ( line[0] == '#' )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
std::string::size_type cpos = line.find_first_of(":");
|
|
|
|
if ( cpos == line.npos )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
std::string key = line.substr(0, cpos);
|
|
|
|
std::string value = ::CleanString(line.substr(cpos+1, line.npos));
|
|
|
|
m_DartConfiguration[key] = value;
|
|
|
|
}
|
|
|
|
fin.close();
|
|
|
|
if ( m_DartMode )
|
|
|
|
{
|
|
|
|
m_TimeOut = atoi(m_DartConfiguration["TimeOut"].c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
bool cmCTest::SetTest(const char* ttype)
|
|
|
|
{
|
|
|
|
if ( cmSystemTools::LowerCase(ttype) == "all" )
|
|
|
|
{
|
|
|
|
m_Tests[cmCTest::ALL_TEST] = 1;
|
|
|
|
}
|
2003-03-20 00:35:02 +03:00
|
|
|
else if ( cmSystemTools::LowerCase(ttype) == "start" )
|
|
|
|
{
|
|
|
|
m_Tests[cmCTest::START_TEST] = 1;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
else if ( cmSystemTools::LowerCase(ttype) == "update" )
|
|
|
|
{
|
|
|
|
m_Tests[cmCTest::UPDATE_TEST] = 1;
|
|
|
|
}
|
|
|
|
else if ( cmSystemTools::LowerCase(ttype) == "configure" )
|
|
|
|
{
|
|
|
|
m_Tests[cmCTest::CONFIGURE_TEST] = 1;
|
|
|
|
}
|
|
|
|
else if ( cmSystemTools::LowerCase(ttype) == "build" )
|
|
|
|
{
|
|
|
|
m_Tests[cmCTest::BUILD_TEST] = 1;
|
|
|
|
}
|
|
|
|
else if ( cmSystemTools::LowerCase(ttype) == "test" )
|
|
|
|
{
|
|
|
|
m_Tests[cmCTest::TEST_TEST] = 1;
|
|
|
|
}
|
|
|
|
else if ( cmSystemTools::LowerCase(ttype) == "coverage" )
|
|
|
|
{
|
|
|
|
m_Tests[cmCTest::COVERAGE_TEST] = 1;
|
|
|
|
}
|
2003-12-16 01:26:00 +03:00
|
|
|
else if ( cmSystemTools::LowerCase(ttype) == "memcheck" )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-16 01:26:00 +03:00
|
|
|
m_Tests[cmCTest::MEMCHECK_TEST] = 1;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2003-12-26 23:02:26 +03:00
|
|
|
else if ( cmSystemTools::LowerCase(ttype) == "notes" )
|
|
|
|
{
|
|
|
|
m_Tests[cmCTest::NOTES_TEST] = 1;
|
|
|
|
}
|
2003-01-07 07:13:15 +03:00
|
|
|
else if ( cmSystemTools::LowerCase(ttype) == "submit" )
|
|
|
|
{
|
|
|
|
m_Tests[cmCTest::SUBMIT_TEST] = 1;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr << "Don't know about test \"" << ttype << "\" yet..." << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCTest::Finalize()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2003-03-20 00:11:19 +03:00
|
|
|
std::string cmCTest::FindTheExecutable(const char *exe)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
std::string fullPath = "";
|
|
|
|
std::string dir;
|
|
|
|
std::string file;
|
|
|
|
|
|
|
|
cmSystemTools::SplitProgramPath(exe, dir, file);
|
2003-11-11 20:36:03 +03:00
|
|
|
if(m_ConfigType != "" &&
|
|
|
|
::TryExecutable(dir.c_str(), file.c_str(), &fullPath,
|
|
|
|
m_ConfigType.c_str()))
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
return fullPath;
|
|
|
|
}
|
|
|
|
|
2003-11-11 20:36:03 +03:00
|
|
|
if (::TryExecutable(dir.c_str(),file.c_str(),&fullPath,"."))
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
return fullPath;
|
|
|
|
}
|
|
|
|
|
2003-11-11 20:36:03 +03:00
|
|
|
if (::TryExecutable(dir.c_str(),file.c_str(),&fullPath,""))
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
return fullPath;
|
|
|
|
}
|
|
|
|
|
2003-11-11 20:36:03 +03:00
|
|
|
if ( m_ConfigType == "" )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-11-11 20:36:03 +03:00
|
|
|
// No config type, so try to guess it
|
|
|
|
if (::TryExecutable(dir.c_str(),file.c_str(),&fullPath,"Release"))
|
|
|
|
{
|
|
|
|
return fullPath;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-11-11 20:36:03 +03:00
|
|
|
if (::TryExecutable(dir.c_str(),file.c_str(),&fullPath,"Debug"))
|
|
|
|
{
|
|
|
|
return fullPath;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-11-11 20:36:03 +03:00
|
|
|
if (::TryExecutable(dir.c_str(),file.c_str(),&fullPath,"MinSizeRel"))
|
|
|
|
{
|
|
|
|
return fullPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (::TryExecutable(dir.c_str(),file.c_str(),&fullPath,"RelWithDebInfo"))
|
|
|
|
{
|
|
|
|
return fullPath;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// if everything else failed, check the users path
|
|
|
|
if (dir != "")
|
|
|
|
{
|
|
|
|
std::string path = cmSystemTools::FindProgram(file.c_str());
|
|
|
|
if (path != "")
|
|
|
|
{
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
}
|
2003-11-11 20:36:03 +03:00
|
|
|
|
|
|
|
if ( m_ConfigType != "" )
|
|
|
|
{
|
|
|
|
dir += "/";
|
|
|
|
dir += m_ConfigType;
|
|
|
|
dir += "/";
|
|
|
|
dir += file;
|
|
|
|
cmSystemTools::Error("config type specified on the command line, but test executable not found.",
|
|
|
|
dir.c_str());
|
|
|
|
return "";
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
return fullPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cmCTest::UpdateDirectory()
|
|
|
|
{
|
2003-02-11 07:19:01 +03:00
|
|
|
int count = 0;
|
2003-02-07 08:09:24 +03:00
|
|
|
std::string::size_type cc, kk;
|
2002-12-17 05:19:21 +03:00
|
|
|
std::string cvsCommand = m_DartConfiguration["CVSCommand"];
|
|
|
|
if ( cvsCommand.size() == 0 )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot find CVSCommand key in the DartConfiguration.tcl" << std::endl;
|
2003-02-11 07:19:01 +03:00
|
|
|
return -1;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
std::string cvsOptions = m_DartConfiguration["CVSUpdateOptions"];
|
|
|
|
if ( cvsOptions.size() == 0 )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot find CVSUpdateOptions key in the DartConfiguration.tcl" << std::endl;
|
2003-02-11 07:19:01 +03:00
|
|
|
return -1;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string sourceDirectory = m_DartConfiguration["SourceDirectory"];
|
|
|
|
if ( sourceDirectory.size() == 0 )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot find SourceDirectory key in the DartConfiguration.tcl" << std::endl;
|
2003-02-11 07:19:01 +03:00
|
|
|
return -1;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
2003-02-11 05:52:01 +03:00
|
|
|
std::string extra_update_opts;
|
|
|
|
if ( m_TestModel == cmCTest::NIGHTLY )
|
|
|
|
{
|
2003-02-28 20:42:50 +03:00
|
|
|
struct tm* t = ::GetNightlyTime(m_DartConfiguration["NightlyStartTime"]);
|
2003-02-11 05:52:01 +03:00
|
|
|
char current_time[1024];
|
2003-10-30 18:05:08 +03:00
|
|
|
sprintf(current_time, "%04d-%02d-%02d %02d:%02d:%02d UTC",
|
|
|
|
t->tm_year + 1900,
|
|
|
|
t->tm_mon + 1,
|
|
|
|
t->tm_mday,
|
|
|
|
t->tm_hour,
|
|
|
|
t->tm_min,
|
|
|
|
t->tm_sec);
|
2003-02-28 20:42:50 +03:00
|
|
|
std::string today_update_date = current_time;
|
2003-02-11 05:52:01 +03:00
|
|
|
|
|
|
|
extra_update_opts += "-D \"" + today_update_date +"\"";
|
2003-02-28 20:42:50 +03:00
|
|
|
//std::cout << "Update: " << extra_update_opts << std::endl;
|
2003-02-11 05:52:01 +03:00
|
|
|
}
|
2003-02-07 08:09:24 +03:00
|
|
|
|
2003-02-11 05:52:01 +03:00
|
|
|
std::string command = cvsCommand + " -z3 update " + cvsOptions +
|
|
|
|
" " + extra_update_opts;
|
2003-02-07 08:09:24 +03:00
|
|
|
std::ofstream os;
|
2003-03-20 00:25:11 +03:00
|
|
|
if ( !this->OpenOutputFile(m_CurrentTag, "Update.xml", os) )
|
2003-02-07 08:09:24 +03:00
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Cannot open log file" << std::endl;
|
2003-02-07 08:09:24 +03:00
|
|
|
}
|
|
|
|
std::string start_time = ::CurrentTime();
|
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-02-11 05:52:01 +03:00
|
|
|
std::string goutput;
|
2002-12-17 05:19:21 +03:00
|
|
|
int retVal = 0;
|
|
|
|
bool res = true;
|
2003-02-12 17:26:47 +03:00
|
|
|
std::ofstream ofs;
|
2002-12-17 05:19:21 +03:00
|
|
|
if ( !m_ShowOnly )
|
|
|
|
{
|
2003-08-04 06:36:17 +04:00
|
|
|
res = cmSystemTools::RunSingleCommand(command.c_str(), &goutput,
|
|
|
|
&retVal, sourceDirectory.c_str(),
|
2003-08-18 19:30:53 +04:00
|
|
|
m_Verbose, 0 /*m_TimeOut*/);
|
2003-02-07 08:09:24 +03:00
|
|
|
if ( this->OpenOutputFile("Temporary", "LastUpdate.log", ofs) )
|
|
|
|
{
|
2003-02-12 17:26:47 +03:00
|
|
|
ofs << goutput << std::endl;;
|
2003-02-07 08:09:24 +03:00
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cout << "Update with command: " << command << std::endl;
|
|
|
|
}
|
2003-02-07 08:09:24 +03:00
|
|
|
|
|
|
|
os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
2004-01-07 03:13:55 +03:00
|
|
|
<< "<Update mode=\"Client\" Generator=\"ctest\">\n"
|
2003-02-07 08:09:24 +03:00
|
|
|
<< "\t<Site>" <<m_DartConfiguration["Site"] << "</Site>\n"
|
|
|
|
<< "\t<BuildName>" << m_DartConfiguration["BuildName"]
|
|
|
|
<< "</BuildName>\n"
|
2003-02-11 05:52:01 +03:00
|
|
|
<< "\t<BuildStamp>" << m_CurrentTag << "-"
|
2003-12-16 01:26:00 +03:00
|
|
|
<< this->GetTestModelString() << "</BuildStamp>" << std::endl;
|
|
|
|
os << "\t<StartDateTime>" << start_time << "</StartDateTime>\n"
|
2003-02-07 08:09:24 +03:00
|
|
|
<< "\t<UpdateCommand>" << command << "</UpdateCommand>\n"
|
2003-02-07 19:03:00 +03:00
|
|
|
<< "\t<UpdateReturnStatus>";
|
|
|
|
if ( retVal )
|
|
|
|
{
|
2003-04-16 21:41:29 +04:00
|
|
|
os << goutput;
|
2003-02-07 19:03:00 +03:00
|
|
|
}
|
|
|
|
os << "</UpdateReturnStatus>" << std::endl;
|
2003-02-07 08:09:24 +03:00
|
|
|
|
|
|
|
std::vector<cmStdString> lines;
|
2003-02-11 05:52:01 +03:00
|
|
|
cmSystemTools::Split(goutput.c_str(), lines);
|
2003-02-07 08:09:24 +03:00
|
|
|
std::cout << "Updated; gathering version information" << std::endl;
|
2003-06-23 22:10:12 +04:00
|
|
|
cmsys::RegularExpression date_author("^date: +([^;]+); +author: +([^;]+); +state: +[^;]+;");
|
|
|
|
cmsys::RegularExpression revision("^revision +([^ ]*) *$");
|
|
|
|
cmsys::RegularExpression end_of_file("^=============================================================================$");
|
|
|
|
cmsys::RegularExpression end_of_comment("^----------------------------$");
|
2003-02-07 08:09:24 +03:00
|
|
|
std::string current_path = "";
|
|
|
|
bool first_file = true;
|
|
|
|
|
|
|
|
cmCTest::AuthorsToUpdatesMap authors_files_map;
|
|
|
|
int num_updated = 0;
|
|
|
|
int num_modified = 0;
|
|
|
|
int num_conflicting = 0;
|
|
|
|
for ( cc= 0 ; cc < lines.size(); cc ++ )
|
|
|
|
{
|
|
|
|
const char* line = lines[cc].c_str();
|
|
|
|
char mod = line[0];
|
|
|
|
if ( line[1] == ' ' && mod != '?' )
|
|
|
|
{
|
2003-02-11 07:19:01 +03:00
|
|
|
count ++;
|
2003-02-07 08:09:24 +03:00
|
|
|
const char* file = line + 2;
|
|
|
|
//std::cout << "Line" << cc << ": " << mod << " - " << file << std::endl;
|
2003-02-12 21:43:15 +03:00
|
|
|
std::string logcommand = cvsCommand + " -z3 log -N " + file;
|
2003-02-07 08:09:24 +03:00
|
|
|
//std::cout << "Do log: " << logcommand << std::endl;
|
2003-02-11 05:52:01 +03:00
|
|
|
std::string output;
|
2003-08-04 06:36:17 +04:00
|
|
|
res = cmSystemTools::RunSingleCommand(logcommand.c_str(), &output,
|
|
|
|
&retVal, sourceDirectory.c_str(),
|
2003-08-18 19:30:53 +04:00
|
|
|
m_Verbose, 0 /*m_TimeOut*/);
|
2003-02-12 17:26:47 +03:00
|
|
|
if ( ofs )
|
|
|
|
{
|
|
|
|
ofs << output << std::endl;
|
|
|
|
}
|
2003-02-07 08:09:24 +03:00
|
|
|
if ( res && retVal == 0)
|
|
|
|
{
|
|
|
|
//std::cout << output << std::endl;
|
|
|
|
std::vector<cmStdString> ulines;
|
|
|
|
cmSystemTools::Split(output.c_str(), ulines);
|
|
|
|
std::string::size_type sline = 0;
|
|
|
|
std::string srevision1 = "Unknown";
|
|
|
|
std::string sdate1 = "Unknown";
|
|
|
|
std::string sauthor1 = "Unknown";
|
|
|
|
std::string semail1 = "Unknown";
|
|
|
|
std::string comment1 = "";
|
|
|
|
std::string srevision2 = "Unknown";
|
|
|
|
std::string sdate2 = "Unknown";
|
|
|
|
std::string sauthor2 = "Unknown";
|
|
|
|
std::string comment2 = "";
|
|
|
|
std::string semail2 = "Unknown";
|
|
|
|
bool have_first = false;
|
|
|
|
bool have_second = false;
|
|
|
|
for ( kk = 0; kk < ulines.size(); kk ++ )
|
|
|
|
{
|
|
|
|
const char* clp = ulines[kk].c_str();
|
|
|
|
if ( !have_second && !sline && revision.find(clp) )
|
|
|
|
{
|
|
|
|
if ( !have_first )
|
|
|
|
{
|
|
|
|
srevision1 = revision.match(1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
srevision2 = revision.match(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( !have_second && !sline && date_author.find(clp) )
|
|
|
|
{
|
|
|
|
sline = kk + 1;
|
|
|
|
if ( !have_first )
|
|
|
|
{
|
|
|
|
sdate1 = date_author.match(1);
|
|
|
|
sauthor1 = date_author.match(2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sdate2 = date_author.match(1);
|
|
|
|
sauthor2 = date_author.match(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( sline && end_of_comment.find(clp) || end_of_file.find(clp))
|
|
|
|
{
|
|
|
|
if ( !have_first )
|
|
|
|
{
|
|
|
|
have_first = true;
|
|
|
|
}
|
|
|
|
else if ( !have_second )
|
|
|
|
{
|
|
|
|
have_second = true;
|
|
|
|
}
|
|
|
|
sline = 0;
|
|
|
|
}
|
|
|
|
else if ( sline )
|
|
|
|
{
|
|
|
|
if ( !have_first )
|
|
|
|
{
|
|
|
|
comment1 += clp;
|
|
|
|
comment1 += "\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
comment2 += clp;
|
|
|
|
comment2 += "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( mod == 'M' )
|
|
|
|
{
|
|
|
|
comment1 = "Locally modified file\n";
|
|
|
|
}
|
2003-10-31 17:31:05 +03:00
|
|
|
if ( mod == 'C' )
|
|
|
|
{
|
|
|
|
comment1 = "Conflict while updating\n";
|
|
|
|
}
|
2003-02-07 08:09:24 +03:00
|
|
|
std::string path = cmSystemTools::GetFilenamePath(file);
|
|
|
|
std::string fname = cmSystemTools::GetFilenameName(file);
|
|
|
|
if ( path != current_path )
|
|
|
|
{
|
|
|
|
if ( !first_file )
|
|
|
|
{
|
|
|
|
os << "\t</Directory>" << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
first_file = false;
|
|
|
|
}
|
|
|
|
os << "\t<Directory>\n"
|
|
|
|
<< "\t\t<Name>" << path << "</Name>" << std::endl;
|
|
|
|
}
|
|
|
|
if ( mod == 'C' )
|
|
|
|
{
|
|
|
|
num_conflicting ++;
|
|
|
|
os << "\t<Conflicting>" << std::endl;
|
|
|
|
}
|
|
|
|
else if ( mod == 'M' )
|
|
|
|
{
|
|
|
|
num_modified ++;
|
|
|
|
os << "\t<Modified>" << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
num_updated ++;
|
|
|
|
os << "\t<Updated>" << std::endl;
|
|
|
|
}
|
|
|
|
if ( srevision2 == "Unknown" )
|
|
|
|
{
|
|
|
|
srevision2 = srevision1;
|
|
|
|
}
|
|
|
|
os << "\t\t<File Directory=\"" << path << "\">" << fname
|
|
|
|
<< "</File>\n"
|
|
|
|
<< "\t\t<Directory>" << path << "</Directory>\n"
|
|
|
|
<< "\t\t<FullName>" << file << "</FullName>\n"
|
|
|
|
<< "\t\t<CheckinDate>" << sdate1 << "</CheckinDate>\n"
|
|
|
|
<< "\t\t<Author>" << sauthor1 << "</Author>\n"
|
|
|
|
<< "\t\t<Email>" << semail1 << "</Email>\n"
|
2003-03-07 23:30:43 +03:00
|
|
|
<< "\t\t<Log>" << this->MakeXMLSafe(comment1) << "</Log>\n"
|
2003-02-07 08:09:24 +03:00
|
|
|
<< "\t\t<Revision>" << srevision1 << "</Revision>\n"
|
2003-03-07 23:30:43 +03:00
|
|
|
<< "\t\t<PriorRevision>" << srevision2 << "</PriorRevision>"
|
|
|
|
<< std::endl;
|
2003-02-07 08:09:24 +03:00
|
|
|
if ( srevision2 != srevision1 )
|
|
|
|
{
|
|
|
|
os
|
2003-03-07 23:30:43 +03:00
|
|
|
<< "\t\t<Revisions>\n"
|
2003-02-07 08:09:24 +03:00
|
|
|
<< "\t\t\t<Revision>" << srevision1 << "</Revision>\n"
|
|
|
|
<< "\t\t\t<PreviousRevision>" << srevision2 << "</PreviousRevision>\n"
|
|
|
|
<< "\t\t\t<Author>" << sauthor1<< "</Author>\n"
|
|
|
|
<< "\t\t\t<Date>" << sdate1 << "</Date>\n"
|
2003-03-07 19:45:50 +03:00
|
|
|
<< "\t\t\t<Comment>" << this->MakeXMLSafe(comment1) << "</Comment>\n"
|
2003-02-07 08:09:24 +03:00
|
|
|
<< "\t\t\t<Email>" << semail1 << "</Email>\n"
|
|
|
|
<< "\t\t</Revisions>\n"
|
|
|
|
<< "\t\t<Revisions>\n"
|
|
|
|
<< "\t\t\t<Revision>" << srevision2 << "</Revision>\n"
|
|
|
|
<< "\t\t\t<PreviousRevision>" << srevision2 << "</PreviousRevision>\n"
|
|
|
|
<< "\t\t\t<Author>" << sauthor2<< "</Author>\n"
|
|
|
|
<< "\t\t\t<Date>" << sdate2 << "</Date>\n"
|
2003-03-07 19:45:50 +03:00
|
|
|
<< "\t\t\t<Comment>" << this->MakeXMLSafe(comment2) << "</Comment>\n"
|
2003-02-07 08:09:24 +03:00
|
|
|
<< "\t\t\t<Email>" << semail2 << "</Email>\n"
|
|
|
|
<< "\t\t</Revisions>" << std::endl;
|
|
|
|
}
|
|
|
|
if ( mod == 'C' )
|
|
|
|
{
|
|
|
|
os << "\t</Conflicting>" << std::endl;
|
|
|
|
}
|
|
|
|
else if ( mod == 'M' )
|
|
|
|
{
|
|
|
|
os << "\t</Modified>" << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
os << "\t</Updated>" << std::endl;
|
|
|
|
}
|
|
|
|
cmCTest::UpdateFiles *u = &authors_files_map[sauthor1];
|
|
|
|
cmCTest::StringPair p;
|
|
|
|
p.first = path;
|
|
|
|
p.second = fname;
|
|
|
|
u->push_back(p);
|
|
|
|
|
|
|
|
current_path = path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( num_updated )
|
|
|
|
{
|
|
|
|
std::cout << "Found " << num_updated << " updated files" << std::endl;
|
|
|
|
}
|
|
|
|
if ( num_modified )
|
|
|
|
{
|
|
|
|
std::cout << "Found " << num_modified << " locally modified files"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
if ( num_conflicting )
|
|
|
|
{
|
|
|
|
std::cout << "Found " << num_conflicting << " conflicting files"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
if ( !first_file )
|
|
|
|
{
|
|
|
|
os << "\t</Directory>" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmCTest::AuthorsToUpdatesMap::iterator it;
|
|
|
|
for ( it = authors_files_map.begin();
|
|
|
|
it != authors_files_map.end();
|
|
|
|
it ++ )
|
|
|
|
{
|
|
|
|
os << "\t<Author>\n"
|
|
|
|
<< "\t\t<Name>" << it->first << "</Name>" << std::endl;
|
|
|
|
cmCTest::UpdateFiles *u = &(it->second);
|
|
|
|
for ( cc = 0; cc < u->size(); cc ++ )
|
|
|
|
{
|
|
|
|
os << "\t\t<File Directory=\"" << (*u)[cc].first << "\">"
|
|
|
|
<< (*u)[cc].second << "</File>" << std::endl;
|
|
|
|
}
|
|
|
|
os << "\t</Author>" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
//std::cout << "End" << std::endl;
|
|
|
|
std::string end_time = ::CurrentTime();
|
|
|
|
os << "\t<EndDateTime>" << end_time << "</EndDateTime>\n"
|
|
|
|
<< "</Update>" << std::endl;
|
|
|
|
|
2003-02-12 17:26:47 +03:00
|
|
|
if ( ofs )
|
|
|
|
{
|
|
|
|
ofs.close();
|
|
|
|
}
|
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
if (! res || retVal )
|
|
|
|
{
|
|
|
|
std::cerr << "Error(s) when updating the project" << std::endl;
|
2003-02-11 05:52:01 +03:00
|
|
|
std::cerr << "Output: " << goutput << std::endl;
|
2003-02-11 07:19:01 +03:00
|
|
|
return -1;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2003-02-11 07:19:01 +03:00
|
|
|
return count;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int cmCTest::ConfigureDirectory()
|
|
|
|
{
|
2003-02-11 05:52:01 +03:00
|
|
|
std::cout << "Configure project" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
std::string cCommand = m_DartConfiguration["ConfigureCommand"];
|
|
|
|
if ( cCommand.size() == 0 )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot find ConfigureCommand key in the DartConfiguration.tcl"
|
|
|
|
<< std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string buildDirectory = m_DartConfiguration["BuildDirectory"];
|
|
|
|
if ( buildDirectory.size() == 0 )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot find BuildDirectory key in the DartConfiguration.tcl" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
2003-08-18 19:30:53 +04:00
|
|
|
int res = 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
if ( !m_ShowOnly )
|
|
|
|
{
|
2003-02-28 19:31:02 +03:00
|
|
|
std::ofstream os;
|
2003-03-20 00:25:11 +03:00
|
|
|
if ( !this->OpenOutputFile(m_CurrentTag, "Configure.xml", os) )
|
2003-02-28 19:31:02 +03:00
|
|
|
{
|
2003-12-26 23:02:26 +03:00
|
|
|
std::cerr << "Cannot open configure file" << std::endl;
|
|
|
|
return 1;
|
2003-02-28 19:31:02 +03:00
|
|
|
}
|
|
|
|
std::string start_time = ::CurrentTime();
|
|
|
|
|
2003-02-11 05:52:01 +03:00
|
|
|
std::ofstream ofs;
|
2003-08-09 01:10:37 +04:00
|
|
|
this->OpenOutputFile("Temporary", "LastConfigure.log", ofs);
|
|
|
|
res = this->RunMakeCommand(cCommand.c_str(), &output,
|
|
|
|
&retVal, buildDirectory.c_str(),
|
2003-08-18 19:30:53 +04:00
|
|
|
m_Verbose, 0, ofs);
|
2003-08-09 01:10:37 +04:00
|
|
|
|
|
|
|
if ( ofs )
|
2003-02-11 05:52:01 +03:00
|
|
|
{
|
|
|
|
ofs.close();
|
|
|
|
}
|
2003-02-28 19:31:02 +03:00
|
|
|
|
|
|
|
if ( os )
|
|
|
|
{
|
2003-12-16 01:26:00 +03:00
|
|
|
this->StartXML(os);
|
|
|
|
os << "<Configure>\n"
|
2003-02-28 19:31:02 +03:00
|
|
|
<< "\t<StartDateTime>" << start_time << "</StartDateTime>" << std::endl;
|
2003-08-18 19:30:53 +04:00
|
|
|
if ( res == cmsysProcess_State_Exited && retVal )
|
2003-02-28 19:31:02 +03:00
|
|
|
{
|
|
|
|
os << retVal;
|
|
|
|
}
|
|
|
|
os << "<ConfigureCommand>" << cCommand.c_str() << "</ConfigureCommand>" << std::endl;
|
|
|
|
//std::cout << "End" << std::endl;
|
2003-03-07 23:30:43 +03:00
|
|
|
os << "<Log>" << this->MakeXMLSafe(output) << "</Log>" << std::endl;
|
2003-02-28 19:31:02 +03:00
|
|
|
std::string end_time = ::CurrentTime();
|
2003-03-06 01:08:33 +03:00
|
|
|
os << "\t<ConfigureStatus>" << retVal << "</ConfigureStatus>\n"
|
|
|
|
<< "\t<EndDateTime>" << end_time << "</EndDateTime>\n"
|
2003-12-16 01:26:00 +03:00
|
|
|
<< "</Configure>" << std::endl;
|
|
|
|
this->EndXML(os);
|
2003-02-28 19:31:02 +03:00
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cout << "Configure with command: " << cCommand << std::endl;
|
|
|
|
}
|
|
|
|
if (! res || retVal )
|
|
|
|
{
|
|
|
|
std::cerr << "Error(s) when updating the project" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cmCTest::BuildDirectory()
|
|
|
|
{
|
2003-02-11 05:52:01 +03:00
|
|
|
std::cout << "Build project" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
std::string makeCommand = m_DartConfiguration["MakeCommand"];
|
|
|
|
if ( makeCommand.size() == 0 )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot find MakeCommand key in the DartConfiguration.tcl" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
std::string buildDirectory = m_DartConfiguration["BuildDirectory"];
|
|
|
|
if ( buildDirectory.size() == 0 )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot find BuildDirectory key in the DartConfiguration.tcl" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-08-08 03:23:49 +04:00
|
|
|
std::ofstream ofs;
|
|
|
|
if ( !this->OpenOutputFile("Temporary", "LastBuild.log", ofs) )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot create LastBuild.log file" << std::endl;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
m_StartBuild = ::CurrentTime();
|
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
2003-08-18 19:30:53 +04:00
|
|
|
int res = cmsysProcess_State_Exited;
|
2002-12-17 05:19:21 +03:00
|
|
|
if ( !m_ShowOnly )
|
|
|
|
{
|
2003-08-08 03:23:49 +04:00
|
|
|
res = this->RunMakeCommand(makeCommand.c_str(), &output,
|
2003-08-04 06:36:17 +04:00
|
|
|
&retVal, buildDirectory.c_str(),
|
2003-08-18 19:30:53 +04:00
|
|
|
m_Verbose, 0, ofs);
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cout << "Build with command: " << makeCommand << std::endl;
|
|
|
|
}
|
|
|
|
m_EndBuild = ::CurrentTime();
|
2003-08-18 19:30:53 +04:00
|
|
|
if (res != cmsysProcess_State_Exited || retVal )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
std::cerr << "Error(s) when building project" << std::endl;
|
|
|
|
}
|
2003-08-08 03:23:49 +04:00
|
|
|
if ( ofs )
|
|
|
|
{
|
|
|
|
ofs.close();
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2004-01-26 21:57:26 +03:00
|
|
|
tm_VectorOfStrings::size_type cc;
|
2003-12-19 02:04:49 +03:00
|
|
|
if ( m_DartConfiguration["SourceDirectory"].size() > 20 ||
|
|
|
|
m_DartConfiguration["BuildDirectory"].size() > 20 )
|
2003-12-19 01:42:56 +03:00
|
|
|
{
|
2003-12-19 02:04:49 +03:00
|
|
|
std::string srcdir = m_DartConfiguration["SourceDirectory"] + "/";
|
|
|
|
std::string bindir = m_DartConfiguration["BuildDirectory"] + "/";
|
|
|
|
std::string srcdirrep;
|
|
|
|
std::string bindirrep;
|
|
|
|
for ( cc = srcdir.size()-2; cc > 0; cc -- )
|
2003-12-19 01:42:56 +03:00
|
|
|
{
|
2003-12-19 02:04:49 +03:00
|
|
|
if ( srcdir[cc] == '/' )
|
|
|
|
{
|
|
|
|
srcdirrep = srcdir.c_str() + cc;
|
|
|
|
srcdirrep = "/..." + srcdirrep;
|
|
|
|
srcdir = srcdir.substr(0, cc+1);
|
|
|
|
break;
|
|
|
|
}
|
2003-12-19 01:42:56 +03:00
|
|
|
}
|
2003-12-19 02:04:49 +03:00
|
|
|
for ( cc = bindir.size()-2; cc > 0; cc -- )
|
2003-12-19 01:42:56 +03:00
|
|
|
{
|
2003-12-19 02:04:49 +03:00
|
|
|
if ( bindir[cc] == '/' )
|
|
|
|
{
|
|
|
|
bindirrep = bindir.c_str() + cc;
|
|
|
|
bindirrep = "/..." + bindirrep;
|
|
|
|
bindir = bindir.substr(0, cc+1);
|
|
|
|
break;
|
|
|
|
}
|
2003-12-19 01:42:56 +03:00
|
|
|
}
|
|
|
|
|
2003-12-19 02:04:49 +03:00
|
|
|
cmSystemTools::ReplaceString(output, srcdir.c_str(), "/.../"); //srcdirrep.c_str());
|
|
|
|
cmSystemTools::ReplaceString(output, bindir.c_str(), "/.../"); //bindirrep.c_str());
|
|
|
|
}
|
2003-12-19 01:42:56 +03:00
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
// Parsing of output for errors and warnings.
|
|
|
|
|
|
|
|
std::vector<cmStdString> lines;
|
|
|
|
cmSystemTools::Split(output.c_str(), lines);
|
|
|
|
|
|
|
|
|
|
|
|
// Lines are marked:
|
|
|
|
// 0 - nothing
|
|
|
|
// 1 - error
|
|
|
|
// > 1 - warning
|
|
|
|
std::vector<int> markedLines(lines.size(), 0);
|
|
|
|
|
|
|
|
// Errors
|
|
|
|
for ( cc = 0; cmCTestErrorMatches[cc]; cc ++ )
|
|
|
|
{
|
2004-01-26 21:57:26 +03:00
|
|
|
m_CustomErrorMatches.push_back(cmCTestErrorMatches[cc]);
|
|
|
|
}
|
|
|
|
for ( cc = 0; cmCTestErrorExceptions[cc]; cc ++ )
|
|
|
|
{
|
|
|
|
m_CustomErrorExceptions.push_back(cmCTestErrorExceptions[cc]);
|
|
|
|
}
|
|
|
|
for ( cc = 0; cmCTestWarningMatches[cc]; cc ++ )
|
|
|
|
{
|
|
|
|
m_CustomWarningMatches.push_back(cmCTestWarningMatches[cc]);
|
|
|
|
}
|
|
|
|
for ( cc = 0; cmCTestWarningExceptions[cc]; cc ++ )
|
|
|
|
{
|
|
|
|
m_CustomWarningExceptions.push_back(cmCTestWarningExceptions[cc]);
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( cc = 0; cc < m_CustomErrorMatches.size(); cc ++ )
|
|
|
|
{
|
|
|
|
cmsys::RegularExpression re(m_CustomErrorMatches[cc].c_str());
|
2003-12-16 01:26:00 +03:00
|
|
|
cmCTest::tm_VectorOfStrings::size_type kk;
|
2002-12-17 05:19:21 +03:00
|
|
|
for ( kk = 0; kk < lines.size(); kk ++ )
|
|
|
|
{
|
|
|
|
if ( re.find(lines[kk]) )
|
|
|
|
{
|
|
|
|
markedLines[kk] = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Warnings
|
2004-01-26 21:57:26 +03:00
|
|
|
for ( cc = 0; cc < m_CustomWarningMatches.size(); cc ++ )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2004-01-26 21:57:26 +03:00
|
|
|
cmsys::RegularExpression re(m_CustomWarningMatches[cc].c_str());
|
2003-12-16 01:26:00 +03:00
|
|
|
cmCTest::tm_VectorOfStrings::size_type kk;
|
2002-12-17 05:19:21 +03:00
|
|
|
for ( kk = 0; kk < lines.size(); kk ++ )
|
|
|
|
{
|
|
|
|
if ( re.find(lines[kk]) )
|
|
|
|
{
|
|
|
|
markedLines[kk] += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Errors exceptions
|
2004-01-26 21:57:26 +03:00
|
|
|
for ( cc = 0; cc < m_CustomErrorExceptions.size(); cc ++ )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2004-01-26 21:57:26 +03:00
|
|
|
cmsys::RegularExpression re(m_CustomErrorExceptions[cc].c_str());
|
2002-12-17 05:19:21 +03:00
|
|
|
std::vector<int>::size_type kk;
|
|
|
|
for ( kk =0; kk < markedLines.size(); kk ++ )
|
|
|
|
{
|
2003-03-20 17:47:13 +03:00
|
|
|
if ( markedLines[kk] == 1 )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
if ( re.find(lines[kk]) )
|
|
|
|
{
|
2003-03-20 17:47:13 +03:00
|
|
|
markedLines[kk] = 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Warning exceptions
|
2004-01-26 21:57:26 +03:00
|
|
|
for ( cc = 0; cc < m_CustomWarningExceptions.size(); cc ++ )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2004-01-26 21:57:26 +03:00
|
|
|
cmsys::RegularExpression re(m_CustomWarningExceptions[cc].c_str());
|
2002-12-17 05:19:21 +03:00
|
|
|
std::vector<int>::size_type kk;
|
|
|
|
for ( kk =0; kk < markedLines.size(); kk ++ )
|
|
|
|
{
|
2003-03-20 17:47:13 +03:00
|
|
|
if ( markedLines[kk] > 1 )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
if ( re.find(lines[kk]) )
|
|
|
|
{
|
2003-03-20 17:47:13 +03:00
|
|
|
markedLines[kk] = 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::vector<cmCTestBuildErrorWarning> errorsWarnings;
|
|
|
|
|
2003-08-09 01:10:37 +04:00
|
|
|
int errors = 0;
|
|
|
|
int warnings = 0;
|
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
std::vector<int>::size_type kk;
|
|
|
|
cmCTestBuildErrorWarning errorwarning;
|
|
|
|
for ( kk =0; kk < markedLines.size(); kk ++ )
|
|
|
|
{
|
|
|
|
errorwarning.m_LineNumber = -1;
|
|
|
|
bool found = false;
|
|
|
|
if ( markedLines[kk] == 1 )
|
|
|
|
{
|
2003-08-08 03:23:49 +04:00
|
|
|
//std::cout << "Error: " << lines[kk] << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
errorwarning.m_Error = true;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
else if ( markedLines[kk] > 1 )
|
|
|
|
{
|
2003-08-08 03:23:49 +04:00
|
|
|
//std::cout << "Warning: " << lines[kk] << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
errorwarning.m_Error = false;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
if ( found )
|
|
|
|
{
|
|
|
|
errorwarning.m_LogLine = static_cast<int>(kk+1);
|
|
|
|
errorwarning.m_Text = lines[kk];
|
|
|
|
errorwarning.m_PreContext = "";
|
|
|
|
errorwarning.m_PostContext = "";
|
|
|
|
std::vector<int>::size_type jj;
|
|
|
|
std::vector<int>::size_type ll = 0;
|
|
|
|
if ( kk > 6 )
|
|
|
|
{
|
|
|
|
ll = kk - 6;
|
|
|
|
}
|
2004-01-28 01:11:57 +03:00
|
|
|
for ( jj = kk-1;
|
|
|
|
jj > 0 && jj > ll && markedLines[jj] != markedLines[kk];
|
2002-12-17 05:19:21 +03:00
|
|
|
jj -- );
|
2004-01-28 01:11:57 +03:00
|
|
|
while ( markedLines[jj] == markedLines[kk] && jj < kk )
|
|
|
|
{
|
|
|
|
jj ++;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
for (; jj < kk; jj ++ )
|
|
|
|
{
|
|
|
|
errorwarning.m_PreContext += lines[jj] + "\n";
|
|
|
|
}
|
|
|
|
for ( jj = kk+1;
|
2004-01-28 01:11:57 +03:00
|
|
|
jj < lines.size() && jj < kk + 7 && markedLines[jj] != markedLines[kk];
|
2002-12-17 05:19:21 +03:00
|
|
|
jj ++ )
|
|
|
|
{
|
|
|
|
errorwarning.m_PostContext += lines[jj] + "\n";
|
|
|
|
}
|
|
|
|
errorsWarnings.push_back(errorwarning);
|
2003-08-09 01:10:37 +04:00
|
|
|
if ( errorwarning.m_Error )
|
|
|
|
{
|
|
|
|
errors ++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
warnings ++;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-09 01:10:37 +04:00
|
|
|
std::cout << " " << errors << " Compiler errors" << std::endl;
|
|
|
|
std::cout << " " << warnings << " Compiler warnings" << std::endl;
|
|
|
|
|
2003-03-20 00:25:11 +03:00
|
|
|
if( !this->OpenOutputFile(m_CurrentTag, "Build.xml", ofs) )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
std::cerr << "Cannot create build XML file" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
this->GenerateDartBuildOutput(ofs, errorsWarnings);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cmCTest::CoverageDirectory()
|
|
|
|
{
|
2003-02-11 05:52:01 +03:00
|
|
|
std::cout << "Performing coverage" << std::endl;
|
2003-12-16 01:26:00 +03:00
|
|
|
cmCTest::tm_VectorOfStrings files;
|
|
|
|
cmCTest::tm_VectorOfStrings cfiles;
|
|
|
|
cmCTest::tm_VectorOfStrings cdirs;
|
2002-12-17 05:19:21 +03:00
|
|
|
bool done = false;
|
|
|
|
std::string::size_type cc;
|
|
|
|
std::string glob;
|
|
|
|
std::map<std::string, std::string> allsourcefiles;
|
|
|
|
std::map<std::string, std::string> allbinaryfiles;
|
|
|
|
|
|
|
|
std::string start_time = ::CurrentTime();
|
|
|
|
|
|
|
|
// Find all source files.
|
|
|
|
std::string sourceDirectory = m_DartConfiguration["SourceDirectory"];
|
|
|
|
if ( sourceDirectory.size() == 0 )
|
|
|
|
{
|
2003-12-08 19:23:46 +03:00
|
|
|
std::cerr << "Cannot find SourceDirectory key in the DartConfiguration.tcl" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string coverageCommand = m_DartConfiguration["CoverageCommand"];
|
|
|
|
if ( coverageCommand.size() == 0 )
|
|
|
|
{
|
|
|
|
std::cerr << "Coverage command not defined in DartConfiguration.tcl" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
cdirs.push_back(sourceDirectory);
|
|
|
|
while ( !done )
|
|
|
|
{
|
|
|
|
if ( cdirs.size() <= 0 )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
glob = cdirs[cdirs.size()-1] + "/*";
|
|
|
|
//std::cout << "Glob: " << glob << std::endl;
|
|
|
|
cdirs.pop_back();
|
|
|
|
if ( cmSystemTools::SimpleGlob(glob, cfiles, 1) )
|
|
|
|
{
|
|
|
|
for ( cc = 0; cc < cfiles.size(); cc ++ )
|
|
|
|
{
|
|
|
|
allsourcefiles[cmSystemTools::GetFilenameName(cfiles[cc])] = cfiles[cc];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( cmSystemTools::SimpleGlob(glob, cfiles, -1) )
|
|
|
|
{
|
|
|
|
for ( cc = 0; cc < cfiles.size(); cc ++ )
|
|
|
|
{
|
|
|
|
if ( cfiles[cc] != "." && cfiles[cc] != ".." )
|
|
|
|
{
|
|
|
|
cdirs.push_back(cfiles[cc]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// find all binary files
|
|
|
|
cdirs.push_back(cmSystemTools::GetCurrentWorkingDirectory());
|
|
|
|
while ( !done )
|
|
|
|
{
|
|
|
|
if ( cdirs.size() <= 0 )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
glob = cdirs[cdirs.size()-1] + "/*";
|
|
|
|
//std::cout << "Glob: " << glob << std::endl;
|
|
|
|
cdirs.pop_back();
|
|
|
|
if ( cmSystemTools::SimpleGlob(glob, cfiles, 1) )
|
|
|
|
{
|
|
|
|
for ( cc = 0; cc < cfiles.size(); cc ++ )
|
|
|
|
{
|
|
|
|
allbinaryfiles[cmSystemTools::GetFilenameName(cfiles[cc])] = cfiles[cc];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( cmSystemTools::SimpleGlob(glob, cfiles, -1) )
|
|
|
|
{
|
|
|
|
for ( cc = 0; cc < cfiles.size(); cc ++ )
|
|
|
|
{
|
|
|
|
if ( cfiles[cc] != "." && cfiles[cc] != ".." )
|
|
|
|
{
|
|
|
|
cdirs.push_back(cfiles[cc]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::map<std::string, std::string>::iterator sit;
|
|
|
|
for ( sit = allbinaryfiles.begin(); sit != allbinaryfiles.end(); sit ++ )
|
|
|
|
{
|
|
|
|
const std::string& fname = sit->second;
|
|
|
|
//std::cout << "File: " << fname << std::endl;
|
|
|
|
if ( strcmp(fname.substr(fname.size()-3, 3).c_str(), ".da") == 0 )
|
|
|
|
{
|
|
|
|
files.push_back(fname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( files.size() == 0 )
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Cannot find any coverage information files (.da)" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ofstream log;
|
2003-04-02 00:31:27 +04:00
|
|
|
if (!this->OpenOutputFile("Temporary", "Coverage.log", log))
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Cannot open log file" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
log.close();
|
2003-03-20 00:25:11 +03:00
|
|
|
if (!this->OpenOutputFile(m_CurrentTag, "Coverage.xml", log))
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Cannot open log file" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-04-02 00:31:27 +04:00
|
|
|
std::string opath = m_ToplevelPath + "/Testing/Temporary/Coverage";
|
|
|
|
cmSystemTools::MakeDirectory(opath.c_str());
|
2003-12-08 19:23:46 +03:00
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
for ( cc = 0; cc < files.size(); cc ++ )
|
|
|
|
{
|
2003-12-16 02:44:33 +03:00
|
|
|
std::string command = coverageCommand + " -o \"" +
|
|
|
|
cmSystemTools::GetFilenamePath(files[cc]) +
|
|
|
|
"\" -l \"" + files[cc] + "\"";
|
2002-12-17 05:19:21 +03:00
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
|
|
|
//std::cout << "Run gcov on " << files[cc] << std::flush;
|
2003-04-02 00:31:27 +04:00
|
|
|
//std::cout << " --- Run [" << command << "]" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
bool res = true;
|
|
|
|
if ( !m_ShowOnly )
|
|
|
|
{
|
2003-08-04 06:36:17 +04:00
|
|
|
res = cmSystemTools::RunSingleCommand(command.c_str(), &output,
|
|
|
|
&retVal, opath.c_str(),
|
2003-08-18 19:30:53 +04:00
|
|
|
m_Verbose, 0 /*m_TimeOut*/);
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
if ( res && retVal == 0 )
|
|
|
|
{
|
|
|
|
//std::cout << " - done" << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Run gcov on " << files[cc] << std::flush;
|
|
|
|
std::cerr << " [" << command << "]" << std::endl;
|
|
|
|
std::cerr << " - fail" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
files.clear();
|
|
|
|
glob = opath + "/*";
|
|
|
|
if ( !cmSystemTools::SimpleGlob(glob, cfiles, 1) )
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Cannot found any coverage files" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2003-12-16 01:26:00 +03:00
|
|
|
std::map<std::string, cmCTest::tm_VectorOfStrings > sourcefiles;
|
2002-12-17 05:19:21 +03:00
|
|
|
for ( cc = 0; cc < cfiles.size(); cc ++ )
|
|
|
|
{
|
|
|
|
std::string& fname = cfiles[cc];
|
2003-12-15 20:02:13 +03:00
|
|
|
// std::cout << "File: " << fname << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
if ( strcmp(fname.substr(fname.size()-5, 5).c_str(), ".gcov") == 0 )
|
|
|
|
{
|
|
|
|
files.push_back(fname);
|
|
|
|
std::string::size_type pos = fname.find(".da.");
|
2003-12-15 20:02:13 +03:00
|
|
|
std::string::size_type pos2 = fname.find(".da##");
|
|
|
|
if(pos2 != fname.npos)
|
|
|
|
{
|
|
|
|
pos = pos2+1;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
if ( pos != fname.npos )
|
|
|
|
{
|
|
|
|
pos += 4;
|
|
|
|
std::string::size_type epos = fname.size() - pos - strlen(".gcov");
|
|
|
|
std::string nf = fname.substr(pos, epos);
|
|
|
|
//std::cout << "Substring: " << nf << std::endl;
|
|
|
|
if ( allsourcefiles.find(nf) != allsourcefiles.end() ||
|
|
|
|
allbinaryfiles.find(nf) != allbinaryfiles.end() )
|
|
|
|
{
|
2003-12-16 01:26:00 +03:00
|
|
|
cmCTest::tm_VectorOfStrings &cvec = sourcefiles[nf];
|
2002-12-17 05:19:21 +03:00
|
|
|
cvec.push_back(fname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-12-15 20:02:13 +03:00
|
|
|
// for ( cc = 0; cc < files.size(); cc ++ )
|
|
|
|
// {
|
|
|
|
// std::cout << "File: " << files[cc] << std::endl;
|
|
|
|
// }
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-12-16 01:26:00 +03:00
|
|
|
std::map<std::string, cmCTest::tm_VectorOfStrings >::iterator it;
|
2002-12-17 05:19:21 +03:00
|
|
|
cmCTest::tm_CoverageMap coverageresults;
|
|
|
|
|
2003-12-16 01:26:00 +03:00
|
|
|
this->StartXML(log);
|
|
|
|
log << "<Coverage>\n"
|
2002-12-17 05:19:21 +03:00
|
|
|
<< "\t<StartDateTime>" << start_time << "</StartDateTime>" << std::endl;
|
|
|
|
|
|
|
|
int total_tested = 0;
|
|
|
|
int total_untested = 0;
|
|
|
|
|
|
|
|
for ( it = sourcefiles.begin(); it != sourcefiles.end(); it ++ )
|
|
|
|
{
|
2003-12-16 01:26:00 +03:00
|
|
|
//std::cerr << "Source file: " << it->first << std::endl;
|
|
|
|
cmCTest::tm_VectorOfStrings &gfiles = it->second;
|
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
for ( cc = 0; cc < gfiles.size(); cc ++ )
|
|
|
|
{
|
|
|
|
//std::cout << "\t" << gfiles[cc] << std::endl;
|
|
|
|
std::ifstream ifile(gfiles[cc].c_str());
|
2003-04-08 02:21:04 +04:00
|
|
|
if ( !ifile )
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Cannot open file: " << gfiles[cc].c_str() << std::endl;
|
2003-04-08 02:21:04 +04:00
|
|
|
}
|
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
ifile.seekg (0, std::ios::end);
|
|
|
|
int length = ifile.tellg();
|
|
|
|
ifile.seekg (0, std::ios::beg);
|
|
|
|
char *buffer = new char [ length + 1 ];
|
|
|
|
ifile.read(buffer, length);
|
|
|
|
buffer [length] = 0;
|
|
|
|
//std::cout << "Read: " << buffer << std::endl;
|
|
|
|
std::vector<cmStdString> lines;
|
|
|
|
cmSystemTools::Split(buffer, lines);
|
|
|
|
delete [] buffer;
|
|
|
|
cmCTest::cmCTestCoverage& cov = coverageresults[it->first];
|
|
|
|
std::vector<int>& covlines = cov.m_Lines;
|
|
|
|
if ( cov.m_FullPath == "" )
|
|
|
|
{
|
|
|
|
covlines.insert(covlines.begin(), lines.size(), -1);
|
|
|
|
if ( allsourcefiles.find(it->first) != allsourcefiles.end() )
|
|
|
|
{
|
|
|
|
cov.m_FullPath = allsourcefiles[it->first];
|
|
|
|
}
|
|
|
|
else if ( allbinaryfiles.find(it->first) != allbinaryfiles.end() )
|
|
|
|
{
|
|
|
|
cov.m_FullPath = allbinaryfiles[it->first];
|
|
|
|
}
|
2003-04-08 02:21:04 +04:00
|
|
|
cov.m_AbsolutePath = cov.m_FullPath;
|
2003-04-02 00:31:27 +04:00
|
|
|
std::string src_dir = m_DartConfiguration["SourceDirectory"];
|
2003-04-08 02:21:04 +04:00
|
|
|
if ( src_dir[src_dir.size()-1] != '/' )
|
|
|
|
{
|
2003-04-08 15:16:51 +04:00
|
|
|
src_dir = src_dir + "/";
|
2003-04-08 02:21:04 +04:00
|
|
|
}
|
2003-04-02 00:31:27 +04:00
|
|
|
std::string::size_type spos = cov.m_FullPath.find(src_dir);
|
|
|
|
if ( spos == 0 )
|
|
|
|
{
|
2003-04-08 02:21:04 +04:00
|
|
|
cov.m_FullPath = std::string("./") + cov.m_FullPath.substr(src_dir.size());
|
2003-04-02 00:31:27 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-04-08 02:21:04 +04:00
|
|
|
//std::cerr << "Compare -- " << cov.m_FullPath << std::endl;
|
|
|
|
//std::cerr << " -- " << src_dir << std::endl;
|
2003-04-08 18:57:30 +04:00
|
|
|
cov.m_Show = false;
|
2003-04-08 02:21:04 +04:00
|
|
|
continue;
|
2003-04-02 00:31:27 +04:00
|
|
|
}
|
2003-04-08 18:57:30 +04:00
|
|
|
cov.m_Show = true;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2003-12-16 02:03:34 +03:00
|
|
|
std::string::size_type kk;
|
2003-12-15 20:02:13 +03:00
|
|
|
// std::cerr << "number of lines " << lines.size() << "\n";
|
2003-12-16 02:32:21 +03:00
|
|
|
for ( kk = 0; kk < lines.size(); kk ++ )
|
|
|
|
{
|
2003-12-16 02:03:34 +03:00
|
|
|
std::string& line = lines[kk];
|
2003-12-15 20:02:13 +03:00
|
|
|
//std::cerr << line << "\n";
|
2003-12-16 02:32:21 +03:00
|
|
|
std::string sub1 = line.substr(0, strlen(" #####"));
|
|
|
|
std::string sub2 = line.substr(0, strlen(" ######"));
|
|
|
|
int count = atoi(sub2.c_str());
|
|
|
|
if ( sub1.compare(" #####") == 0 ||
|
|
|
|
sub2.compare(" ######") == 0 )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-16 02:03:34 +03:00
|
|
|
if ( covlines[kk] == -1 )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-16 02:03:34 +03:00
|
|
|
covlines[kk] = 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
cov.m_UnTested ++;
|
|
|
|
//std::cout << "Untested - ";
|
|
|
|
}
|
|
|
|
else if ( count > 0 )
|
|
|
|
{
|
2003-12-16 02:03:34 +03:00
|
|
|
if ( covlines[kk] == -1 )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-16 02:03:34 +03:00
|
|
|
covlines[kk] = 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
cov.m_Tested ++;
|
2003-12-24 17:19:36 +03:00
|
|
|
covlines[kk] ++;
|
2002-12-17 05:19:21 +03:00
|
|
|
//std::cout << "Tested[" << count << "] - ";
|
|
|
|
}
|
|
|
|
|
|
|
|
//std::cout << line << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//std::cerr << "Finalizing" << std::endl;
|
|
|
|
cmCTest::tm_CoverageMap::iterator cit;
|
|
|
|
int ccount = 0;
|
|
|
|
std::ofstream cfileoutput;
|
|
|
|
int cfileoutputcount = 0;
|
|
|
|
char cfileoutputname[100];
|
|
|
|
std::string local_start_time = ::CurrentTime();
|
|
|
|
std::string local_end_time;
|
|
|
|
for ( cit = coverageresults.begin(); cit != coverageresults.end(); cit ++ )
|
|
|
|
{
|
2003-04-08 18:57:30 +04:00
|
|
|
cmCTest::cmCTestCoverage &cov = cit->second;
|
|
|
|
if ( !cov.m_Show )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2003-12-24 17:19:36 +03:00
|
|
|
|
|
|
|
// Check if we should ignore the directory
|
|
|
|
std::string coverage_dir = cmSystemTools::GetFilenamePath(cov.m_AbsolutePath.c_str());
|
|
|
|
coverage_dir += "/.NoDartCoverage";
|
|
|
|
if ( cmSystemTools::FileExists(coverage_dir.c_str()) )
|
|
|
|
{
|
|
|
|
if ( m_Verbose )
|
|
|
|
{
|
|
|
|
std::cout << "Ignore file: " << cov.m_FullPath.c_str() << std::endl;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
if ( ccount == 100 )
|
|
|
|
{
|
|
|
|
local_end_time = ::CurrentTime();
|
|
|
|
cfileoutput << "\t<EndDateTime>" << local_end_time << "</EndDateTime>\n"
|
2003-12-16 01:26:00 +03:00
|
|
|
<< "</CoverageLog>" << std::endl;
|
|
|
|
this->EndXML(cfileoutput);
|
2002-12-17 05:19:21 +03:00
|
|
|
cfileoutput.close();
|
2003-04-02 00:31:27 +04:00
|
|
|
std::cout << "Close file: " << cfileoutputname << std::endl;
|
|
|
|
ccount = 0;
|
|
|
|
}
|
|
|
|
if ( ccount == 0 )
|
|
|
|
{
|
2002-12-17 05:19:21 +03:00
|
|
|
sprintf(cfileoutputname, "CoverageLog-%d.xml", cfileoutputcount++);
|
2003-04-02 00:31:27 +04:00
|
|
|
std::cout << "Open file: " << cfileoutputname << std::endl;
|
2003-03-20 00:25:11 +03:00
|
|
|
if (!this->OpenOutputFile(m_CurrentTag, cfileoutputname, cfileoutput))
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Cannot open log file: " << cfileoutputname << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
local_start_time = ::CurrentTime();
|
2003-12-16 01:26:00 +03:00
|
|
|
this->StartXML(cfileoutput);
|
|
|
|
cfileoutput << "<CoverageLog>\n"
|
2003-04-02 00:31:27 +04:00
|
|
|
<< "\t<StartDateTime>" << local_start_time << "</StartDateTime>" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//std::cerr << "Final process of Source file: " << cit->first << std::endl;
|
2003-12-24 17:19:36 +03:00
|
|
|
cov.m_UnTested = 0;
|
|
|
|
cov.m_Tested = 0;
|
|
|
|
for ( cc = 0; cc < cov.m_Lines.size(); cc ++ )
|
|
|
|
{
|
|
|
|
if ( cov.m_Lines[cc] == 0 )
|
|
|
|
{
|
|
|
|
cov.m_UnTested ++;
|
|
|
|
}
|
|
|
|
else if ( cov.m_Lines[cc] > 0 )
|
|
|
|
{
|
|
|
|
cov.m_Tested ++;
|
|
|
|
}
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-04-08 02:21:04 +04:00
|
|
|
std::ifstream ifile(cov.m_AbsolutePath.c_str());
|
|
|
|
if ( !ifile )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot open file: " << cov.m_FullPath.c_str() << std::endl;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
ifile.seekg (0, std::ios::end);
|
|
|
|
int length = ifile.tellg();
|
|
|
|
ifile.seekg (0, std::ios::beg);
|
|
|
|
char *buffer = new char [ length + 1 ];
|
|
|
|
ifile.read(buffer, length);
|
|
|
|
buffer [length] = 0;
|
|
|
|
//std::cout << "Read: " << buffer << std::endl;
|
|
|
|
std::vector<cmStdString> lines;
|
|
|
|
cmSystemTools::Split(buffer, lines);
|
|
|
|
delete [] buffer;
|
2003-12-24 17:19:36 +03:00
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
cfileoutput << "\t<File Name=\"" << cit->first << "\" FullPath=\""
|
2003-04-08 18:57:30 +04:00
|
|
|
<< cov.m_FullPath << "\">\n"
|
2003-04-02 00:31:27 +04:00
|
|
|
<< "\t\t<Report>" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
for ( cc = 0; cc < lines.size(); cc ++ )
|
|
|
|
{
|
|
|
|
cfileoutput << "\t\t<Line Number=\""
|
2003-04-02 00:31:27 +04:00
|
|
|
<< static_cast<int>(cc) << "\" Count=\""
|
|
|
|
<< cov.m_Lines[cc] << "\">"
|
|
|
|
<< cmCTest::MakeXMLSafe(lines[cc]) << "</Line>" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
cfileoutput << "\t\t</Report>\n"
|
2003-04-02 00:31:27 +04:00
|
|
|
<< "\t</File>" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
|
|
|
|
|
|
|
|
total_tested += cov.m_Tested;
|
|
|
|
total_untested += cov.m_UnTested;
|
|
|
|
float cper = 0;
|
|
|
|
float cmet = 0;
|
2003-04-08 18:57:30 +04:00
|
|
|
if ( total_tested + total_untested > 0 && (cov.m_Tested + cov.m_UnTested) > 0)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-04-10 17:07:26 +04:00
|
|
|
cper = (100 * SAFEDIV(static_cast<float>(cov.m_Tested),
|
|
|
|
static_cast<float>(cov.m_Tested + cov.m_UnTested)));
|
|
|
|
cmet = ( SAFEDIV(static_cast<float>(cov.m_Tested + 10),
|
|
|
|
static_cast<float>(cov.m_Tested + cov.m_UnTested + 10)));
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2003-04-08 02:21:04 +04:00
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
log << "\t<File Name=\"" << cit->first << "\" FullPath=\"" << cov.m_FullPath
|
2003-04-02 00:31:27 +04:00
|
|
|
<< "\" Covered=\"" << (cmet>0?"true":"false") << "\">\n"
|
|
|
|
<< "\t\t<LOCTested>" << cov.m_Tested << "</LOCTested>\n"
|
|
|
|
<< "\t\t<LOCUnTested>" << cov.m_UnTested << "</LOCUnTested>\n"
|
2003-04-08 18:57:30 +04:00
|
|
|
<< "\t\t<PercentCoverage>";
|
|
|
|
log.setf(std::ios::fixed, std::ios::floatfield);
|
|
|
|
log.precision(2);
|
2003-04-10 17:07:26 +04:00
|
|
|
log << (cper) << "</PercentCoverage>\n"
|
2003-04-08 18:57:30 +04:00
|
|
|
<< "\t\t<CoverageMetric>";
|
|
|
|
log.setf(std::ios::fixed, std::ios::floatfield);
|
|
|
|
log.precision(2);
|
2003-04-10 17:07:26 +04:00
|
|
|
log << (cmet) << "</CoverageMetric>\n"
|
2003-04-02 00:31:27 +04:00
|
|
|
<< "\t</File>" << std::endl;
|
|
|
|
ccount ++;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( ccount > 0 )
|
|
|
|
{
|
|
|
|
local_end_time = ::CurrentTime();
|
|
|
|
cfileoutput << "\t<EndDateTime>" << local_end_time << "</EndDateTime>\n"
|
2003-12-16 01:26:00 +03:00
|
|
|
<< "</CoverageLog>" << std::endl;
|
|
|
|
this->EndXML(cfileoutput);
|
2002-12-17 05:19:21 +03:00
|
|
|
cfileoutput.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
int total_lines = total_tested + total_untested;
|
2003-04-10 17:07:26 +04:00
|
|
|
float percent_coverage = 100 * SAFEDIV(static_cast<float>(total_tested),
|
|
|
|
static_cast<float>(total_lines));
|
2002-12-17 05:19:21 +03:00
|
|
|
if ( total_lines == 0 )
|
|
|
|
{
|
|
|
|
percent_coverage = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string end_time = ::CurrentTime();
|
|
|
|
|
|
|
|
log << "\t<LOCTested>" << total_tested << "</LOCTested>\n"
|
|
|
|
<< "\t<LOCUntested>" << total_untested << "</LOCUntested>\n"
|
|
|
|
<< "\t<LOC>" << total_lines << "</LOC>\n"
|
2003-04-08 18:57:30 +04:00
|
|
|
<< "\t<PercentCoverage>";
|
|
|
|
log.setf(std::ios::fixed, std::ios::floatfield);
|
|
|
|
log.precision(2);
|
2003-04-10 17:07:26 +04:00
|
|
|
log << (percent_coverage)<< "</PercentCoverage>\n"
|
2002-12-17 05:19:21 +03:00
|
|
|
<< "\t<EndDateTime>" << end_time << "</EndDateTime>\n"
|
2003-12-16 01:26:00 +03:00
|
|
|
<< "</Coverage>" << std::endl;
|
|
|
|
this->EndXML(log);
|
2002-12-17 05:19:21 +03:00
|
|
|
|
|
|
|
std::cout << "\tCovered LOC: " << total_tested << std::endl
|
|
|
|
<< "\tNot covered LOC: " << total_untested << std::endl
|
|
|
|
<< "\tTotal LOC: " << total_lines << std::endl
|
2003-04-08 18:57:30 +04:00
|
|
|
<< "\tPercentage Coverage: ";
|
|
|
|
|
|
|
|
std::cout.setf(std::ios::fixed, std::ios::floatfield);
|
|
|
|
std::cout.precision(2);
|
2003-04-10 17:07:26 +04:00
|
|
|
std::cout << (percent_coverage) << "%" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCTest::OpenOutputFile(const std::string& path,
|
|
|
|
const std::string& name, std::ofstream& stream)
|
|
|
|
{
|
2003-03-20 00:25:11 +03:00
|
|
|
std::string testingDir = m_ToplevelPath + "/Testing";
|
2002-12-17 05:19:21 +03:00
|
|
|
if ( path.size() > 0 )
|
|
|
|
{
|
|
|
|
testingDir += "/" + path;
|
|
|
|
}
|
|
|
|
if ( cmSystemTools::FileExists(testingDir.c_str()) )
|
|
|
|
{
|
|
|
|
if ( !cmSystemTools::FileIsDirectory(testingDir.c_str()) )
|
|
|
|
{
|
|
|
|
std::cerr << "File " << testingDir
|
|
|
|
<< " is in the place of the testing directory"
|
|
|
|
<< std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( !cmSystemTools::MakeDirectory(testingDir.c_str()) )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot create directory " << testingDir
|
|
|
|
<< std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::string filename = testingDir + "/" + name;
|
|
|
|
stream.open(filename.c_str());
|
|
|
|
if( !stream )
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Problem opening file: " << filename << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCTest::GenerateDartBuildOutput(std::ostream& os,
|
|
|
|
std::vector<cmCTestBuildErrorWarning> ew)
|
|
|
|
{
|
2003-12-16 01:26:00 +03:00
|
|
|
this->StartXML(os);
|
|
|
|
os << "<Build>\n"
|
2002-12-17 05:19:21 +03:00
|
|
|
<< "\t<StartDateTime>" << m_StartBuild << "</StartDateTime>\n"
|
|
|
|
<< "<BuildCommand>"
|
|
|
|
<< this->MakeXMLSafe(m_DartConfiguration["MakeCommand"])
|
|
|
|
<< "</BuildCommand>" << std::endl;
|
|
|
|
|
|
|
|
std::vector<cmCTestBuildErrorWarning>::iterator it;
|
|
|
|
for ( it = ew.begin(); it != ew.end(); it++ )
|
|
|
|
{
|
|
|
|
cmCTestBuildErrorWarning *cm = &(*it);
|
|
|
|
os << "\t<" << (cm->m_Error ? "Error" : "Warning") << ">\n"
|
|
|
|
<< "\t\t<BuildLogLine>" << cm->m_LogLine << "</BuildLogLine>\n"
|
|
|
|
<< "\t\t<Text>" << this->MakeXMLSafe(cm->m_Text)
|
|
|
|
<< "\n</Text>" << std::endl;
|
|
|
|
if ( cm->m_SourceFile.size() > 0 )
|
|
|
|
{
|
|
|
|
os << "\t\t<SourceFile>" << cm->m_SourceFile << "</SourceFile>"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
if ( cm->m_SourceFileTail.size() > 0 )
|
|
|
|
{
|
|
|
|
os << "\t\t<SourceFileTail>" << cm->m_SourceFileTail
|
|
|
|
<< "</SourceFileTail>" << std::endl;
|
|
|
|
}
|
|
|
|
if ( cm->m_LineNumber >= 0 )
|
|
|
|
{
|
|
|
|
os << "\t\t<SourceLineNumber>" << cm->m_LineNumber
|
|
|
|
<< "</SourceLineNumber>" << std::endl;
|
|
|
|
}
|
|
|
|
os << "\t\t<PreContext>" << this->MakeXMLSafe(cm->m_PreContext)
|
|
|
|
<< "</PreContext>\n"
|
|
|
|
<< "\t\t<PostContext>" << this->MakeXMLSafe(cm->m_PostContext)
|
|
|
|
<< "</PostContext>\n"
|
|
|
|
<< "\t\t<RepeatCount>0</RepeatCount>\n"
|
|
|
|
<< "</" << (cm->m_Error ? "Error" : "Warning") << ">\n\n"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
os << "\t<Log Encoding=\"base64\" Compression=\"/bin/gzip\">\n\t</Log>\n"
|
|
|
|
<< "\t<EndDateTime>" << m_EndBuild << "</EndDateTime>\n"
|
2003-12-16 01:26:00 +03:00
|
|
|
<< "</Build>" << std::endl;
|
|
|
|
this->EndXML(os);
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
2003-12-16 01:26:00 +03:00
|
|
|
void cmCTest::ProcessDirectory(cmCTest::tm_VectorOfStrings &passed,
|
|
|
|
cmCTest::tm_VectorOfStrings &failed,
|
2004-02-10 23:51:29 +03:00
|
|
|
bool memcheck, std::ostream* logfile)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
// does the DartTestfile.txt exist ?
|
|
|
|
if(!cmSystemTools::FileExists("DartTestfile.txt"))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse the file
|
|
|
|
std::ifstream fin("DartTestfile.txt");
|
|
|
|
if(!fin)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int firstTest = 1;
|
2003-08-09 02:28:03 +04:00
|
|
|
|
2003-06-23 22:10:12 +04:00
|
|
|
cmsys::RegularExpression ireg(this->m_IncludeRegExp.c_str());
|
|
|
|
cmsys::RegularExpression ereg(this->m_ExcludeRegExp.c_str());
|
2003-08-09 02:28:03 +04:00
|
|
|
cmsys::RegularExpression dartStuff("(<DartMeasurement.*/DartMeasurement[a-zA-Z]*>)");
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-12-06 00:39:14 +03:00
|
|
|
cmListFileCache cache;
|
|
|
|
cmListFile* listFile = cache.GetFileCache("DartTestfile.txt", false);
|
|
|
|
for(std::vector<cmListFileFunction>::const_iterator f =
|
|
|
|
listFile->m_Functions.begin(); f != listFile->m_Functions.end(); ++f)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-06 00:39:14 +03:00
|
|
|
const cmListFileFunction& lff = *f;
|
|
|
|
const std::string& name = lff.m_Name;
|
|
|
|
const std::vector<cmListFileArgument>& args = lff.m_Arguments;
|
|
|
|
if (name == "SUBDIRS")
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-06 00:39:14 +03:00
|
|
|
std::string cwd = cmSystemTools::GetCurrentWorkingDirectory();
|
|
|
|
for(std::vector<cmListFileArgument>::const_iterator j = args.begin();
|
|
|
|
j != args.end(); ++j)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-06 00:39:14 +03:00
|
|
|
std::string nwd = cwd + "/";
|
|
|
|
nwd += j->Value;
|
|
|
|
if (cmSystemTools::FileIsDirectory(nwd.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::ChangeDirectory(nwd.c_str());
|
2004-02-10 23:51:29 +03:00
|
|
|
this->ProcessDirectory(passed, failed, memcheck, logfile);
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
}
|
2003-12-06 00:39:14 +03:00
|
|
|
// return to the original directory
|
|
|
|
cmSystemTools::ChangeDirectory(cwd.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name == "ADD_TEST")
|
|
|
|
{
|
|
|
|
if (this->m_UseExcludeRegExp &&
|
|
|
|
this->m_UseExcludeRegExpFirst &&
|
|
|
|
ereg.find(args[0].Value.c_str()))
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-06 00:39:14 +03:00
|
|
|
continue;
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
if ( memcheck )
|
|
|
|
{
|
|
|
|
tm_VectorOfStrings::iterator it;
|
|
|
|
bool found = false;
|
|
|
|
for ( it = m_CustomMemCheckIgnore.begin();
|
|
|
|
it != m_CustomMemCheckIgnore.end(); ++ it )
|
|
|
|
{
|
|
|
|
if ( *it == args[0].Value )
|
|
|
|
{
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( found )
|
|
|
|
{
|
|
|
|
if ( m_Verbose )
|
|
|
|
{
|
|
|
|
std::cout << "Ignore memcheck: " << *it << std::endl;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tm_VectorOfStrings::iterator it;
|
|
|
|
bool found = false;
|
|
|
|
for ( it = m_CustomTestsIgnore.begin();
|
|
|
|
it != m_CustomTestsIgnore.end(); ++ it )
|
|
|
|
{
|
|
|
|
if ( *it == args[0].Value )
|
|
|
|
{
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( found )
|
|
|
|
{
|
|
|
|
if ( m_Verbose )
|
|
|
|
{
|
|
|
|
std::cout << "Ignore test: " << *it << std::endl;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-06 00:39:14 +03:00
|
|
|
if (this->m_UseIncludeRegExp && !ireg.find(args[0].Value.c_str()))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (this->m_UseExcludeRegExp &&
|
2004-01-26 21:57:26 +03:00
|
|
|
!this->m_UseExcludeRegExpFirst &&
|
|
|
|
ereg.find(args[0].Value.c_str()))
|
2003-12-06 00:39:14 +03:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-12-06 00:39:14 +03:00
|
|
|
cmCTestTestResult cres;
|
|
|
|
cres.m_Status = cmCTest::NOT_RUN;
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-12-06 00:39:14 +03:00
|
|
|
if (firstTest)
|
|
|
|
{
|
|
|
|
std::string nwd = cmSystemTools::GetCurrentWorkingDirectory();
|
2003-12-16 01:26:00 +03:00
|
|
|
if ( m_Verbose )
|
|
|
|
{
|
|
|
|
std::cerr << "Changing directory into " << nwd.c_str() << "\n";
|
|
|
|
}
|
2003-12-06 00:39:14 +03:00
|
|
|
firstTest = 0;
|
|
|
|
}
|
|
|
|
cres.m_Name = args[0].Value;
|
|
|
|
if ( m_ShowOnly )
|
|
|
|
{
|
|
|
|
std::cout << args[0].Value << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(stderr,"Testing %-30s ",args[0].Value.c_str());
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
//std::cerr << "Testing " << args[0] << " ... ";
|
|
|
|
// find the test executable
|
|
|
|
std::string actualCommand = this->FindTheExecutable(args[1].Value.c_str());
|
|
|
|
std::string testCommand = cmSystemTools::ConvertToOutputPath(actualCommand.c_str());
|
2003-12-17 00:19:56 +03:00
|
|
|
std::string memcheckcommand = "";
|
2003-11-03 23:38:23 +03:00
|
|
|
|
2003-12-06 00:39:14 +03:00
|
|
|
// continue if we did not find the executable
|
|
|
|
if (testCommand == "")
|
|
|
|
{
|
|
|
|
std::cerr << "Unable to find executable: " <<
|
|
|
|
args[1].Value.c_str() << "\n";
|
2004-01-21 17:49:32 +03:00
|
|
|
m_TestResults.push_back( cres );
|
|
|
|
failed.push_back(args[0].Value);
|
2003-12-06 00:39:14 +03:00
|
|
|
continue;
|
|
|
|
}
|
2003-11-03 23:38:23 +03:00
|
|
|
|
2003-12-06 00:39:14 +03:00
|
|
|
// add the arguments
|
|
|
|
std::vector<cmListFileArgument>::const_iterator j = args.begin();
|
|
|
|
++j;
|
|
|
|
++j;
|
|
|
|
std::vector<const char*> arguments;
|
2003-12-16 01:26:00 +03:00
|
|
|
if ( memcheck )
|
|
|
|
{
|
|
|
|
cmCTest::tm_VectorOfStrings::size_type pp;
|
|
|
|
arguments.push_back(m_MemoryTester.c_str());
|
2003-12-17 00:19:56 +03:00
|
|
|
memcheckcommand = m_MemoryTester;
|
2003-12-16 01:26:00 +03:00
|
|
|
for ( pp = 0; pp < m_MemoryTesterOptionsParsed.size(); pp ++ )
|
|
|
|
{
|
|
|
|
arguments.push_back(m_MemoryTesterOptionsParsed[pp].c_str());
|
2003-12-17 00:19:56 +03:00
|
|
|
memcheckcommand += " ";
|
|
|
|
memcheckcommand += cmSystemTools::EscapeSpaces(m_MemoryTesterOptionsParsed[pp].c_str());
|
2003-12-16 01:26:00 +03:00
|
|
|
}
|
|
|
|
}
|
2003-12-06 00:39:14 +03:00
|
|
|
arguments.push_back(actualCommand.c_str());
|
|
|
|
for(;j != args.end(); ++j)
|
|
|
|
{
|
|
|
|
testCommand += " ";
|
|
|
|
testCommand += cmSystemTools::EscapeSpaces(j->Value.c_str());
|
|
|
|
arguments.push_back(j->Value.c_str());
|
|
|
|
}
|
|
|
|
arguments.push_back(0);
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-12-06 00:39:14 +03:00
|
|
|
/**
|
|
|
|
* Run an executable command and put the stdout in output.
|
|
|
|
*/
|
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-12-06 00:39:14 +03:00
|
|
|
double clock_start, clock_finish;
|
|
|
|
clock_start = cmSystemTools::GetTime();
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-12-06 00:39:14 +03:00
|
|
|
if ( m_Verbose )
|
|
|
|
{
|
2003-12-17 00:19:56 +03:00
|
|
|
std::cout << std::endl << (memcheck?"MemCheck":"Test") << " command: " << testCommand << std::endl;
|
|
|
|
if ( memcheck )
|
|
|
|
{
|
|
|
|
std::cout << "Memory check command: " << memcheckcommand << std::endl;
|
|
|
|
}
|
2003-12-06 00:39:14 +03:00
|
|
|
}
|
2004-02-10 23:51:29 +03:00
|
|
|
if ( logfile )
|
|
|
|
{
|
|
|
|
*logfile << "Command: ";
|
|
|
|
tm_VectorOfStrings::size_type ll;
|
|
|
|
for ( ll = 0; ll < arguments.size()-1; ll ++ )
|
|
|
|
{
|
|
|
|
*logfile << "\"" << arguments[ll] << "\" ";
|
|
|
|
}
|
|
|
|
*logfile
|
|
|
|
<< std::endl
|
|
|
|
<< "Directory: " << cmSystemTools::GetCurrentWorkingDirectory() << std::endl
|
|
|
|
<< "Output:" << std::endl
|
|
|
|
<< "----------------------------------------------------------"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
2003-12-06 00:39:14 +03:00
|
|
|
int res = 0;
|
|
|
|
if ( !m_ShowOnly )
|
|
|
|
{
|
2004-02-10 23:51:29 +03:00
|
|
|
res = this->RunTest(arguments, &output, &retVal, logfile);
|
|
|
|
}
|
|
|
|
if ( logfile )
|
|
|
|
{
|
|
|
|
*logfile
|
|
|
|
<< "----------------------------------------------------------"
|
|
|
|
<< std::endl << std::endl;
|
2003-12-06 00:39:14 +03:00
|
|
|
}
|
2004-02-10 23:51:29 +03:00
|
|
|
|
2003-12-06 00:39:14 +03:00
|
|
|
clock_finish = cmSystemTools::GetTime();
|
|
|
|
|
|
|
|
cres.m_ExecutionTime = (double)(clock_finish - clock_start);
|
|
|
|
cres.m_FullCommandLine = testCommand;
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2003-12-06 00:39:14 +03:00
|
|
|
if ( !m_ShowOnly )
|
|
|
|
{
|
|
|
|
if (res == cmsysProcess_State_Exited && retVal == 0)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-06 00:39:14 +03:00
|
|
|
fprintf(stderr," Passed\n");
|
|
|
|
passed.push_back(args[0].Value);
|
|
|
|
cres.m_Status = cmCTest::COMPLETED;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cres.m_Status = cmCTest::FAILED;
|
|
|
|
if ( res == cmsysProcess_State_Expired )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-06 00:39:14 +03:00
|
|
|
fprintf(stderr,"***Timeout\n");
|
|
|
|
cres.m_Status = cmCTest::TIMEOUT;
|
2003-08-14 02:17:11 +04:00
|
|
|
}
|
2003-12-06 00:39:14 +03:00
|
|
|
else if ( res == cmsysProcess_State_Exception )
|
2003-08-14 02:17:11 +04:00
|
|
|
{
|
2003-12-06 00:39:14 +03:00
|
|
|
fprintf(stderr,"***Exception: ");
|
|
|
|
switch ( retVal )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2004-01-26 21:57:26 +03:00
|
|
|
case cmsysProcess_Exception_Fault:
|
|
|
|
fprintf(stderr,"SegFault");
|
|
|
|
cres.m_Status = cmCTest::SEGFAULT;
|
|
|
|
break;
|
|
|
|
case cmsysProcess_Exception_Illegal:
|
|
|
|
fprintf(stderr,"Illegal");
|
|
|
|
cres.m_Status = cmCTest::ILLEGAL;
|
|
|
|
break;
|
|
|
|
case cmsysProcess_Exception_Interrupt:
|
|
|
|
fprintf(stderr,"Interrupt");
|
|
|
|
cres.m_Status = cmCTest::INTERRUPT;
|
|
|
|
break;
|
|
|
|
case cmsysProcess_Exception_Numerical:
|
|
|
|
fprintf(stderr,"Numerical");
|
|
|
|
cres.m_Status = cmCTest::NUMERICAL;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr,"Other");
|
|
|
|
cres.m_Status = cmCTest::OTHER_FAULT;
|
2003-08-14 02:17:11 +04:00
|
|
|
}
|
2003-12-06 00:39:14 +03:00
|
|
|
fprintf(stderr,"\n");
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2003-12-06 00:39:14 +03:00
|
|
|
else if ( res == cmsysProcess_State_Error )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2004-01-07 19:24:22 +03:00
|
|
|
fprintf(stderr,"***Bad command %d\n", res);
|
2003-12-06 00:39:14 +03:00
|
|
|
cres.m_Status = cmCTest::BAD_COMMAND;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(stderr,"***Failed\n");
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2003-12-06 00:39:14 +03:00
|
|
|
failed.push_back(args[0].Value);
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2003-12-06 00:39:14 +03:00
|
|
|
if (output != "")
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-06 00:39:14 +03:00
|
|
|
if (dartStuff.find(output.c_str()))
|
|
|
|
{
|
|
|
|
std::string dartString = dartStuff.match(1);
|
|
|
|
cmSystemTools::ReplaceString(output, dartString.c_str(),"");
|
|
|
|
cres.m_RegressionImages = this->GenerateRegressionImages(dartString);
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
}
|
2003-12-06 00:39:14 +03:00
|
|
|
cres.m_Output = output;
|
|
|
|
cres.m_ReturnValue = retVal;
|
|
|
|
std::string nwd = cmSystemTools::GetCurrentWorkingDirectory();
|
|
|
|
if ( nwd.size() > m_ToplevelPath.size() )
|
|
|
|
{
|
|
|
|
nwd = "." + nwd.substr(m_ToplevelPath.size(), nwd.npos);
|
|
|
|
}
|
|
|
|
cmSystemTools::ReplaceString(nwd, "\\", "/");
|
|
|
|
cres.m_Path = nwd;
|
|
|
|
cres.m_CompletionStatus = "Completed";
|
|
|
|
m_TestResults.push_back( cres );
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-16 01:26:00 +03:00
|
|
|
bool cmCTest::InitializeMemoryChecking()
|
|
|
|
{
|
2003-12-17 00:19:56 +03:00
|
|
|
// Setup the command
|
2003-12-16 01:26:00 +03:00
|
|
|
if ( cmSystemTools::FileExists(m_DartConfiguration["MemoryCheckCommand"].c_str()) )
|
|
|
|
{
|
|
|
|
m_MemoryTester
|
|
|
|
= cmSystemTools::ConvertToOutputPath(m_DartConfiguration["MemoryCheckCommand"].c_str());
|
|
|
|
}
|
|
|
|
else if ( cmSystemTools::FileExists(m_DartConfiguration["PurifyCommand"].c_str()) )
|
|
|
|
{
|
|
|
|
m_MemoryTester
|
|
|
|
= cmSystemTools::ConvertToOutputPath(m_DartConfiguration["PurifyCommand"].c_str());
|
|
|
|
}
|
|
|
|
else if ( cmSystemTools::FileExists(m_DartConfiguration["ValgrindCommand"].c_str()) )
|
|
|
|
{
|
|
|
|
m_MemoryTester
|
|
|
|
= cmSystemTools::ConvertToOutputPath(m_DartConfiguration["ValgrindCommand"].c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Memory checker (MemoryCheckCommand) not set, or cannot find the specified program."
|
2003-12-16 01:26:00 +03:00
|
|
|
<< std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-12-17 01:30:24 +03:00
|
|
|
if ( m_MemoryTester[0] == '\"' && m_MemoryTester[m_MemoryTester.size()-1] == '\"' )
|
|
|
|
{
|
|
|
|
m_MemoryTester = m_MemoryTester.substr(1, m_MemoryTester.size()-2);
|
|
|
|
}
|
|
|
|
|
2003-12-17 00:19:56 +03:00
|
|
|
// Setup the options
|
2003-12-16 01:26:00 +03:00
|
|
|
if ( m_DartConfiguration["MemoryCheckCommandOptions"].size() )
|
|
|
|
{
|
|
|
|
m_MemoryTesterOptions = m_DartConfiguration["MemoryCheckCommandOptions"];
|
|
|
|
}
|
|
|
|
else if ( m_DartConfiguration["ValgrindCommandOptions"].size() )
|
|
|
|
{
|
|
|
|
m_MemoryTesterOptions = m_DartConfiguration["ValgrindCommandOptions"];
|
|
|
|
}
|
|
|
|
|
|
|
|
m_MemoryTesterOutputFile = m_ToplevelPath + "/Testing/Temporary/MemoryChecker.log";
|
|
|
|
m_MemoryTesterOutputFile = cmSystemTools::EscapeSpaces(m_MemoryTesterOutputFile.c_str());
|
|
|
|
|
2003-12-17 01:30:24 +03:00
|
|
|
if ( m_MemoryTester.find("valgrind") != std::string::npos )
|
2003-12-16 01:26:00 +03:00
|
|
|
{
|
|
|
|
m_MemoryTesterStyle = cmCTest::VALGRIND;
|
|
|
|
if ( !m_MemoryTesterOptions.size() )
|
|
|
|
{
|
|
|
|
m_MemoryTesterOptions = "-q --skin=memcheck --leak-check=yes --show-reachable=yes --workaround-gcc296-bugs=yes --num-callers=100";
|
|
|
|
}
|
2003-12-17 00:19:56 +03:00
|
|
|
if ( m_DartConfiguration["MemoryCheckSuppressionFile"].size() )
|
|
|
|
{
|
|
|
|
if ( !cmSystemTools::FileExists(m_DartConfiguration["MemoryCheckSuppressionFile"].c_str()) )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot find memory checker suppression file: "
|
|
|
|
<< m_DartConfiguration["MemoryCheckSuppressionFile"].c_str() << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
m_MemoryTesterOptions += " --suppressions=" + cmSystemTools::EscapeSpaces(m_DartConfiguration["MemoryCheckSuppressionFile"].c_str()) + "";
|
|
|
|
}
|
2003-12-16 01:26:00 +03:00
|
|
|
}
|
2003-12-17 01:30:24 +03:00
|
|
|
else if ( m_MemoryTester.find("purify") != std::string::npos )
|
2003-12-16 01:26:00 +03:00
|
|
|
{
|
|
|
|
m_MemoryTesterStyle = cmCTest::PURIFY;
|
|
|
|
#ifdef _WIN32
|
|
|
|
m_MemoryTesterOptions += " /SAVETEXTDATA=" + m_MemoryTesterOutputFile;
|
|
|
|
#else
|
|
|
|
m_MemoryTesterOptions += " -log-file=" + m_MemoryTesterOutputFile;
|
|
|
|
#endif
|
|
|
|
}
|
2003-12-17 01:30:24 +03:00
|
|
|
else if ( m_MemoryTester.find("boundschecker") != std::string::npos )
|
2003-12-16 01:26:00 +03:00
|
|
|
{
|
|
|
|
m_MemoryTesterStyle = cmCTest::BOUNDS_CHECKER;
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Bounds checker not yet implemented" << std::endl;
|
2003-12-16 01:26:00 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Do not understand memory checker: " << m_MemoryTester.c_str() << std::endl;
|
2003-12-16 01:26:00 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_MemoryTesterOptionsParsed = cmSystemTools::ParseArguments(m_MemoryTesterOptions.c_str());
|
|
|
|
cmCTest::tm_VectorOfStrings::size_type cc;
|
|
|
|
for ( cc = 0; cmCTestMemCheckResultStrings[cc]; cc ++ )
|
|
|
|
{
|
|
|
|
m_MemoryTesterGlobalResults[cc] = 0;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cmCTest::TestDirectory(bool memcheck)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-16 01:26:00 +03:00
|
|
|
std::cout << (memcheck ? "Memory check" : "Test") << " project" << std::endl;
|
|
|
|
if ( memcheck )
|
|
|
|
{
|
|
|
|
if ( !this->InitializeMemoryChecking() )
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-26 21:57:26 +03:00
|
|
|
if ( memcheck )
|
|
|
|
{
|
|
|
|
if ( !this->ExecuteCommands(m_CustomPreMemCheck) )
|
|
|
|
{
|
|
|
|
std::cerr << "Problem executing pre-memcheck command(s)." << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( !this->ExecuteCommands(m_CustomPreTest) )
|
|
|
|
{
|
|
|
|
std::cerr << "Problem executing pre-test command(s)." << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-16 01:26:00 +03:00
|
|
|
cmCTest::tm_VectorOfStrings passed;
|
|
|
|
cmCTest::tm_VectorOfStrings failed;
|
2002-12-17 05:19:21 +03:00
|
|
|
int total;
|
|
|
|
|
2004-02-10 23:51:29 +03:00
|
|
|
std::ofstream ofs;
|
|
|
|
std::ofstream *olog = 0;
|
|
|
|
if ( this->OpenOutputFile("Temporary", (memcheck?"LastMemCheck.xml":"LastTest.log"), ofs) )
|
|
|
|
{
|
|
|
|
olog = &ofs;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
m_StartTest = ::CurrentTime();
|
2004-02-10 23:51:29 +03:00
|
|
|
this->ProcessDirectory(passed, failed, memcheck, olog);
|
2002-12-17 05:19:21 +03:00
|
|
|
m_EndTest = ::CurrentTime();
|
|
|
|
|
|
|
|
total = int(passed.size()) + int(failed.size());
|
|
|
|
|
|
|
|
if (total == 0)
|
|
|
|
{
|
|
|
|
if ( !m_ShowOnly )
|
|
|
|
{
|
|
|
|
std::cerr << "No tests were found!!!\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-12-16 21:18:22 +03:00
|
|
|
if (m_Verbose && passed.size() &&
|
|
|
|
(m_UseIncludeRegExp || m_UseExcludeRegExp))
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
std::cerr << "\nThe following tests passed:\n";
|
2003-12-16 01:26:00 +03:00
|
|
|
for(cmCTest::tm_VectorOfStrings::iterator j = passed.begin();
|
2004-01-26 21:57:26 +03:00
|
|
|
j != passed.end(); ++j)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
std::cerr << "\t" << *j << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
float percent = float(passed.size()) * 100.0f / total;
|
2004-01-22 19:10:03 +03:00
|
|
|
if ( failed.size() > 0 && percent > 99)
|
|
|
|
{
|
|
|
|
percent = 99;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
fprintf(stderr,"\n%.0f%% tests passed, %i tests failed out of %i\n",
|
2004-01-26 21:57:26 +03:00
|
|
|
percent, int(failed.size()), total);
|
2002-12-17 05:19:21 +03:00
|
|
|
|
|
|
|
if (failed.size())
|
|
|
|
{
|
|
|
|
std::cerr << "\nThe following tests FAILED:\n";
|
2003-12-16 01:26:00 +03:00
|
|
|
for(cmCTest::tm_VectorOfStrings::iterator j = failed.begin();
|
2004-01-26 21:57:26 +03:00
|
|
|
j != failed.end(); ++j)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
std::cerr << "\t" << *j << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( m_DartMode )
|
|
|
|
{
|
2004-02-11 18:56:35 +03:00
|
|
|
std::ofstream xmlfile;
|
2003-12-16 01:26:00 +03:00
|
|
|
if( !this->OpenOutputFile(m_CurrentTag,
|
2004-02-11 18:56:35 +03:00
|
|
|
(memcheck ? (m_CompatibilityMode?"Purify.xml":"MemCheck.xml") : "Test.xml"), xmlfile) )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2003-12-16 01:26:00 +03:00
|
|
|
std::cerr << "Cannot create " << (memcheck ? "memory check" : "testing")
|
|
|
|
<< " XML file" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2003-12-16 01:26:00 +03:00
|
|
|
if ( memcheck )
|
|
|
|
{
|
2004-02-11 18:56:35 +03:00
|
|
|
this->GenerateDartMemCheckOutput(xmlfile);
|
2003-12-16 01:26:00 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-02-11 18:56:35 +03:00
|
|
|
this->GenerateDartTestOutput(xmlfile);
|
2003-12-16 01:26:00 +03:00
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
2004-01-26 21:57:26 +03:00
|
|
|
if ( memcheck )
|
|
|
|
{
|
|
|
|
if ( !this->ExecuteCommands(m_CustomPostMemCheck) )
|
|
|
|
{
|
|
|
|
std::cerr << "Problem executing post-memcheck command(s)." << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( !this->ExecuteCommands(m_CustomPostTest) )
|
|
|
|
{
|
|
|
|
std::cerr << "Problem executing post-test command(s)." << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
return int(failed.size());
|
|
|
|
}
|
|
|
|
|
2003-01-07 07:13:15 +03:00
|
|
|
int cmCTest::SubmitResults()
|
|
|
|
{
|
2003-12-16 01:26:00 +03:00
|
|
|
cmCTest::tm_VectorOfStrings files;
|
2003-01-07 07:13:15 +03:00
|
|
|
std::string prefix = this->GetSubmitResultsPrefix();
|
2003-02-07 08:09:24 +03:00
|
|
|
// TODO:
|
|
|
|
// Check if test is enabled
|
|
|
|
if ( this->CTestFileExists("Update.xml") )
|
|
|
|
{
|
|
|
|
files.push_back("Update.xml");
|
|
|
|
}
|
2003-02-28 19:31:02 +03:00
|
|
|
if ( this->CTestFileExists("Configure.xml") )
|
|
|
|
{
|
|
|
|
files.push_back("Configure.xml");
|
|
|
|
}
|
2003-01-07 07:13:15 +03:00
|
|
|
if ( this->CTestFileExists("Build.xml") )
|
|
|
|
{
|
|
|
|
files.push_back("Build.xml");
|
|
|
|
}
|
|
|
|
if ( this->CTestFileExists("Test.xml") )
|
|
|
|
{
|
|
|
|
files.push_back("Test.xml");
|
|
|
|
}
|
|
|
|
if ( this->CTestFileExists("Coverage.xml") )
|
|
|
|
{
|
|
|
|
files.push_back("Coverage.xml");
|
2003-12-16 01:26:00 +03:00
|
|
|
cmCTest::tm_VectorOfStrings gfiles;
|
2003-04-02 00:31:27 +04:00
|
|
|
std::string gpath = m_ToplevelPath + "/Testing/" + m_CurrentTag;
|
|
|
|
std::string::size_type glen = gpath.size() + 1;
|
|
|
|
gpath = gpath + "/CoverageLog*";
|
|
|
|
//std::cout << "Globbing for: " << gpath.c_str() << std::endl;
|
|
|
|
if ( cmSystemTools::SimpleGlob(gpath, gfiles, 1) )
|
|
|
|
{
|
|
|
|
size_t cc;
|
|
|
|
for ( cc = 0; cc < gfiles.size(); cc ++ )
|
|
|
|
{
|
|
|
|
gfiles[cc] = gfiles[cc].substr(glen);
|
|
|
|
//std::cout << "Glob file: " << gfiles[cc].c_str() << std::endl;
|
|
|
|
files.push_back(gfiles[cc]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "Problem globbing" << std::endl;
|
2003-04-02 00:31:27 +04:00
|
|
|
}
|
2003-01-07 07:13:15 +03:00
|
|
|
}
|
2003-12-16 01:26:00 +03:00
|
|
|
if ( this->CTestFileExists("MemCheck.xml") )
|
|
|
|
{
|
|
|
|
files.push_back("MemCheck.xml");
|
|
|
|
}
|
2003-01-07 07:13:15 +03:00
|
|
|
if ( this->CTestFileExists("Purify.xml") )
|
|
|
|
{
|
|
|
|
files.push_back("Purify.xml");
|
|
|
|
}
|
2003-12-26 23:02:26 +03:00
|
|
|
if ( this->CTestFileExists("Notes.xml") )
|
|
|
|
{
|
|
|
|
files.push_back("Notes.xml");
|
|
|
|
}
|
2003-01-07 07:13:15 +03:00
|
|
|
cmCTestSubmit submit;
|
2003-04-02 00:31:27 +04:00
|
|
|
submit.SetVerbose(m_Verbose);
|
2003-01-07 07:13:15 +03:00
|
|
|
if ( m_DartConfiguration["DropMethod"] == "" ||
|
2004-01-26 21:57:26 +03:00
|
|
|
m_DartConfiguration["DropMethod"] == "ftp" )
|
2003-01-07 07:13:15 +03:00
|
|
|
{
|
2003-08-11 20:19:46 +04:00
|
|
|
std::cout << " Using FTP submit method" << std::endl;
|
2003-01-07 07:13:15 +03:00
|
|
|
std::string url = "ftp://";
|
2003-04-02 18:19:45 +04:00
|
|
|
url += cmCTest::MakeURLSafe(m_DartConfiguration["DropSiteUser"]) + ":" +
|
|
|
|
cmCTest::MakeURLSafe(m_DartConfiguration["DropSitePassword"]) + "@" +
|
2003-01-07 07:13:15 +03:00
|
|
|
m_DartConfiguration["DropSite"] +
|
2003-04-02 18:19:45 +04:00
|
|
|
cmCTest::MakeURLSafe(m_DartConfiguration["DropLocation"]);
|
2003-04-02 00:31:27 +04:00
|
|
|
if ( !submit.SubmitUsingFTP(m_ToplevelPath+"/Testing/"+m_CurrentTag,
|
|
|
|
files, prefix, url) )
|
2003-01-12 05:47:12 +03:00
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << " Problems when submitting via FTP" << std::endl;
|
2003-01-12 05:47:12 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if ( !submit.TriggerUsingHTTP(files, prefix, m_DartConfiguration["TriggerSite"]) )
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << " Problems when triggering via HTTP" << std::endl;
|
2003-01-12 05:47:12 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2003-08-11 20:19:46 +04:00
|
|
|
std::cout << " Submission successfull" << std::endl;
|
2003-01-12 05:47:12 +03:00
|
|
|
return 1;
|
2003-01-07 07:13:15 +03:00
|
|
|
}
|
2003-01-15 06:10:13 +03:00
|
|
|
else if ( m_DartConfiguration["DropMethod"] == "http" )
|
|
|
|
{
|
2003-08-11 20:19:46 +04:00
|
|
|
std::cout << " Using HTTP submit method" << std::endl;
|
2003-01-15 06:10:13 +03:00
|
|
|
std::string url = "http://";
|
|
|
|
if ( m_DartConfiguration["DropSiteUser"].size() > 0 )
|
|
|
|
{
|
|
|
|
url += m_DartConfiguration["DropSiteUser"];
|
|
|
|
if ( m_DartConfiguration["DropSitePassword"].size() > 0 )
|
|
|
|
{
|
|
|
|
url += ":" + m_DartConfiguration["DropSitePassword"];
|
|
|
|
}
|
|
|
|
url += "@";
|
|
|
|
}
|
|
|
|
url += m_DartConfiguration["DropSite"] + m_DartConfiguration["DropLocation"];
|
2003-03-20 00:25:11 +03:00
|
|
|
if ( !submit.SubmitUsingHTTP(m_ToplevelPath+"/Testing/"+m_CurrentTag, files, prefix, url) )
|
2003-01-15 06:10:13 +03:00
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << " Problems when submitting via HTTP" << std::endl;
|
2003-01-15 06:10:13 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if ( !submit.TriggerUsingHTTP(files, prefix, m_DartConfiguration["TriggerSite"]) )
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << " Problems when triggering via HTTP" << std::endl;
|
2003-01-15 06:10:13 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2003-08-11 20:19:46 +04:00
|
|
|
std::cout << " Submission successfull" << std::endl;
|
2003-01-15 06:10:13 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2003-01-07 07:13:15 +03:00
|
|
|
else
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
std::cerr << "SCP submit not yet implemented" << std::endl;
|
2003-01-07 07:13:15 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-01-07 07:13:15 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCTest::CTestFileExists(const std::string& filename)
|
|
|
|
{
|
2003-03-20 00:25:11 +03:00
|
|
|
std::string testingDir = m_ToplevelPath + "/Testing/" + m_CurrentTag + "/" +
|
2003-01-07 07:13:15 +03:00
|
|
|
filename;
|
|
|
|
return cmSystemTools::FileExists(testingDir.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string cmCTest::GetSubmitResultsPrefix()
|
|
|
|
{
|
|
|
|
std::string name = m_DartConfiguration["Site"] +
|
|
|
|
"___" + m_DartConfiguration["BuildName"] +
|
2003-02-11 05:52:01 +03:00
|
|
|
"___" + m_CurrentTag + "-" +
|
|
|
|
this->GetTestModelString() + "___XML___";
|
2003-01-07 07:13:15 +03:00
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2003-12-16 01:26:00 +03:00
|
|
|
void cmCTest::GenerateDartMemCheckOutput(std::ostream& os)
|
|
|
|
{
|
|
|
|
if ( !m_DartMode )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->StartXML(os);
|
|
|
|
if ( m_CompatibilityMode )
|
|
|
|
{
|
|
|
|
os << "<Purify>" << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
os << "<MemCheck>" << std::endl;
|
|
|
|
}
|
|
|
|
os << "\t<StartDateTime>" << m_StartTest << "</StartDateTime>\n"
|
2004-01-26 21:57:26 +03:00
|
|
|
<< "\t<TestList>\n";
|
2003-12-16 01:26:00 +03:00
|
|
|
tm_TestResultsVector::size_type cc;
|
|
|
|
for ( cc = 0; cc < m_TestResults.size(); cc ++ )
|
|
|
|
{
|
|
|
|
cmCTestTestResult *result = &m_TestResults[cc];
|
|
|
|
os << "\t\t<Test>" << this->MakeXMLSafe(result->m_Path)
|
2004-01-26 21:57:26 +03:00
|
|
|
<< "/" << this->MakeXMLSafe(result->m_Name)
|
|
|
|
<< "</Test>" << std::endl;
|
2003-12-16 01:26:00 +03:00
|
|
|
}
|
|
|
|
os << "\t</TestList>\n";
|
|
|
|
for ( cc = 0; cc < m_TestResults.size(); cc ++ )
|
|
|
|
{
|
|
|
|
cmCTestTestResult *result = &m_TestResults[cc];
|
|
|
|
std::string memcheckstr;
|
|
|
|
int memcheckresults[cmCTest::NO_MEMORY_FAULT];
|
|
|
|
int kk;
|
|
|
|
this->ProcessMemCheckOutput(result->m_Output, memcheckstr, memcheckresults);
|
|
|
|
os << "\t<Test Status=\"";
|
|
|
|
if ( result->m_Status == cmCTest::COMPLETED )
|
|
|
|
{
|
|
|
|
os << "passed";
|
|
|
|
}
|
|
|
|
else if ( result->m_Status == cmCTest::NOT_RUN )
|
|
|
|
{
|
|
|
|
os << "notrun";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
os << "failed";
|
|
|
|
}
|
|
|
|
os << "\">\n"
|
|
|
|
<< "\t\t<Name>" << this->MakeXMLSafe(result->m_Name) << "</Name>\n"
|
|
|
|
<< "\t\t<Path>" << this->MakeXMLSafe(result->m_Path) << "</Path>\n"
|
|
|
|
<< "\t\t<FullName>" << this->MakeXMLSafe(result->m_Path)
|
|
|
|
<< "/" << this->MakeXMLSafe(result->m_Name) << "</FullName>\n"
|
|
|
|
<< "\t\t<FullCommandLine>"
|
|
|
|
<< this->MakeXMLSafe(result->m_FullCommandLine)
|
|
|
|
<< "</FullCommandLine>\n"
|
|
|
|
<< "\t\t<Results>" << std::endl;
|
|
|
|
for ( kk = 0; cmCTestMemCheckResultStrings[kk]; kk ++ )
|
|
|
|
{
|
|
|
|
os << "\t\t\t<" << cmCTestMemCheckResultStrings[kk] << ">"
|
|
|
|
<< memcheckresults[kk]
|
|
|
|
<< "</" << cmCTestMemCheckResultStrings[kk] << ">" << std::endl;
|
|
|
|
m_MemoryTesterGlobalResults[kk] += memcheckresults[kk];
|
|
|
|
}
|
|
|
|
os
|
|
|
|
<< "\t\t</Results>\n"
|
2003-12-16 22:43:13 +03:00
|
|
|
<< "\t<Log>\n" << memcheckstr << std::endl
|
2003-12-16 01:26:00 +03:00
|
|
|
<< "\t</Log>\n"
|
|
|
|
<< "\t</Test>" << std::endl;
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-16 01:26:00 +03:00
|
|
|
os << "\t<EndDateTime>" << m_EndTest << "</EndDateTime>" << std::endl;
|
|
|
|
if ( m_CompatibilityMode )
|
|
|
|
{
|
|
|
|
os << "</Purify>" << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
os << "</MemCheck>" << std::endl;
|
|
|
|
}
|
|
|
|
this->EndXML(os);
|
|
|
|
|
|
|
|
|
|
|
|
std::cerr << "Memory checking results:" << std::endl;
|
|
|
|
for ( cc = 0; cmCTestMemCheckResultStrings[cc]; cc ++ )
|
|
|
|
{
|
|
|
|
std::cerr << "\t\t" << cmCTestMemCheckResultStrings[cc] << " - "
|
|
|
|
<< m_MemoryTesterGlobalResults[cc] << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-09 02:28:03 +04:00
|
|
|
void cmCTest::GenerateDartTestOutput(std::ostream& os)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
if ( !m_DartMode )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-12-16 01:26:00 +03:00
|
|
|
this->StartXML(os);
|
|
|
|
os << "<Testing>\n"
|
2004-01-26 21:57:26 +03:00
|
|
|
<< "\t<StartDateTime>" << m_StartTest << "</StartDateTime>\n"
|
|
|
|
<< "\t<TestList>\n";
|
2002-12-17 05:19:21 +03:00
|
|
|
tm_TestResultsVector::size_type cc;
|
|
|
|
for ( cc = 0; cc < m_TestResults.size(); cc ++ )
|
|
|
|
{
|
|
|
|
cmCTestTestResult *result = &m_TestResults[cc];
|
|
|
|
os << "\t\t<Test>" << this->MakeXMLSafe(result->m_Path)
|
2004-01-26 21:57:26 +03:00
|
|
|
<< "/" << this->MakeXMLSafe(result->m_Name)
|
|
|
|
<< "</Test>" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
os << "\t</TestList>\n";
|
|
|
|
for ( cc = 0; cc < m_TestResults.size(); cc ++ )
|
|
|
|
{
|
|
|
|
cmCTestTestResult *result = &m_TestResults[cc];
|
2003-08-18 19:30:53 +04:00
|
|
|
os << "\t<Test Status=\"";
|
|
|
|
if ( result->m_Status == cmCTest::COMPLETED )
|
|
|
|
{
|
|
|
|
os << "passed";
|
|
|
|
}
|
|
|
|
else if ( result->m_Status == cmCTest::NOT_RUN )
|
|
|
|
{
|
|
|
|
os << "notrun";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
os << "failed";
|
|
|
|
}
|
|
|
|
os << "\">\n"
|
|
|
|
<< "\t\t<Name>" << this->MakeXMLSafe(result->m_Name) << "</Name>\n"
|
|
|
|
<< "\t\t<Path>" << this->MakeXMLSafe(result->m_Path) << "</Path>\n"
|
|
|
|
<< "\t\t<FullName>" << this->MakeXMLSafe(result->m_Path)
|
|
|
|
<< "/" << this->MakeXMLSafe(result->m_Name) << "</FullName>\n"
|
|
|
|
<< "\t\t<FullCommandLine>"
|
|
|
|
<< this->MakeXMLSafe(result->m_FullCommandLine)
|
|
|
|
<< "</FullCommandLine>\n"
|
|
|
|
<< "\t\t<Results>" << std::endl;
|
|
|
|
if ( result->m_Status != cmCTest::NOT_RUN )
|
|
|
|
{
|
|
|
|
if ( result->m_Status != cmCTest::COMPLETED || result->m_ReturnValue )
|
|
|
|
{
|
|
|
|
os << "\t\t\t<NamedMeasurement type=\"text/string\" name=\"Exit Code\"><Value>"
|
|
|
|
<< this->GetTestStatus(result->m_Status) << "</Value></NamedMeasurement>\n"
|
|
|
|
<< "\t\t\t<NamedMeasurement type=\"text/string\" name=\"Exit Value\"><Value>"
|
|
|
|
<< result->m_ReturnValue << "</Value></NamedMeasurement>" << std::endl;
|
|
|
|
}
|
|
|
|
os << result->m_RegressionImages;
|
|
|
|
os << "\t\t\t<NamedMeasurement type=\"numeric/double\" "
|
|
|
|
<< "name=\"Execution Time\"><Value>"
|
|
|
|
<< result->m_ExecutionTime << "</Value></NamedMeasurement>\n";
|
|
|
|
os
|
|
|
|
<< "\t\t\t<NamedMeasurement type=\"text/string\" "
|
|
|
|
<< "name=\"Completion Status\"><Value>"
|
|
|
|
<< result->m_CompletionStatus << "</Value></NamedMeasurement>\n";
|
|
|
|
}
|
|
|
|
os
|
|
|
|
<< "\t\t\t<Measurement>\n"
|
|
|
|
<< "\t\t\t\t<Value>" << this->MakeXMLSafe(result->m_Output)
|
|
|
|
<< "</Value>\n"
|
|
|
|
<< "\t\t\t</Measurement>\n"
|
|
|
|
<< "\t\t</Results>\n"
|
|
|
|
<< "\t</Test>" << std::endl;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
os << "\t<EndDateTime>" << m_EndTest << "</EndDateTime>\n"
|
2004-01-26 21:57:26 +03:00
|
|
|
<< "</Testing>" << std::endl;
|
2003-12-16 01:26:00 +03:00
|
|
|
this->EndXML(os);
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int cmCTest::ProcessTests()
|
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
bool notest = true;
|
|
|
|
int cc;
|
2003-02-11 07:19:01 +03:00
|
|
|
int update_count = 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
|
|
|
|
for ( cc = 0; cc < LAST_TEST; cc ++ )
|
|
|
|
{
|
|
|
|
if ( m_Tests[cc] )
|
|
|
|
{
|
|
|
|
notest = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( m_Tests[UPDATE_TEST] || m_Tests[ALL_TEST] )
|
|
|
|
{
|
2003-02-11 07:19:01 +03:00
|
|
|
update_count = this->UpdateDirectory();
|
|
|
|
if ( update_count < 0 )
|
|
|
|
{
|
2003-12-17 16:36:10 +03:00
|
|
|
res |= CTEST_UPDATE_ERRORS;
|
2003-02-11 07:19:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( m_TestModel == cmCTest::CONTINUOUS && !update_count )
|
|
|
|
{
|
|
|
|
return 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
if ( m_Tests[CONFIGURE_TEST] || m_Tests[ALL_TEST] )
|
|
|
|
{
|
2003-12-17 16:36:10 +03:00
|
|
|
if (this->ConfigureDirectory())
|
|
|
|
{
|
|
|
|
res |= CTEST_CONFIGURE_ERRORS;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
if ( m_Tests[BUILD_TEST] || m_Tests[ALL_TEST] )
|
|
|
|
{
|
2004-01-07 03:13:55 +03:00
|
|
|
this->UpdateCTestConfiguration();
|
2003-12-17 16:36:10 +03:00
|
|
|
if (this->BuildDirectory())
|
|
|
|
{
|
|
|
|
res |= CTEST_BUILD_ERRORS;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
if ( m_Tests[TEST_TEST] || m_Tests[ALL_TEST] || notest )
|
|
|
|
{
|
2004-01-07 03:13:55 +03:00
|
|
|
this->UpdateCTestConfiguration();
|
2003-12-17 16:36:10 +03:00
|
|
|
if (this->TestDirectory(false))
|
|
|
|
{
|
|
|
|
res |= CTEST_TEST_ERRORS;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
if ( m_Tests[COVERAGE_TEST] || m_Tests[ALL_TEST] )
|
|
|
|
{
|
2004-01-07 03:13:55 +03:00
|
|
|
this->UpdateCTestConfiguration();
|
2002-12-17 05:19:21 +03:00
|
|
|
this->CoverageDirectory();
|
|
|
|
}
|
2003-12-16 01:26:00 +03:00
|
|
|
if ( m_Tests[MEMCHECK_TEST] || m_Tests[ALL_TEST] )
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2004-01-07 03:13:55 +03:00
|
|
|
this->UpdateCTestConfiguration();
|
2003-12-17 16:36:10 +03:00
|
|
|
if (this->TestDirectory(true))
|
|
|
|
{
|
|
|
|
res |= CTEST_MEMORY_ERRORS;
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2004-01-07 03:13:55 +03:00
|
|
|
if ( m_Tests[NOTES_TEST] || m_Tests[ALL_TEST] )
|
|
|
|
{
|
|
|
|
this->UpdateCTestConfiguration();
|
|
|
|
if ( m_NotesFiles.size() )
|
|
|
|
{
|
|
|
|
this->GenerateNotesFile(m_NotesFiles.c_str());
|
|
|
|
}
|
|
|
|
}
|
2003-01-07 07:13:15 +03:00
|
|
|
if ( m_Tests[SUBMIT_TEST] || m_Tests[ALL_TEST] )
|
|
|
|
{
|
2004-01-07 03:13:55 +03:00
|
|
|
this->UpdateCTestConfiguration();
|
2003-01-07 07:13:15 +03:00
|
|
|
this->SubmitResults();
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
return res;
|
|
|
|
}
|
2003-02-11 05:52:01 +03:00
|
|
|
|
|
|
|
std::string cmCTest::GetTestModelString()
|
|
|
|
{
|
|
|
|
switch ( m_TestModel )
|
|
|
|
{
|
2004-01-26 21:57:26 +03:00
|
|
|
case cmCTest::NIGHTLY:
|
|
|
|
return "Nightly";
|
|
|
|
case cmCTest::CONTINUOUS:
|
|
|
|
return "Continuous";
|
2003-02-11 05:52:01 +03:00
|
|
|
}
|
|
|
|
return "Experimental";
|
|
|
|
}
|
2003-08-08 16:48:42 +04:00
|
|
|
|
2004-01-07 03:13:55 +03:00
|
|
|
int cmCTest::GetTestModelFromString(const char* str)
|
|
|
|
{
|
|
|
|
if ( !str )
|
|
|
|
{
|
|
|
|
return cmCTest::EXPERIMENTAL;
|
|
|
|
}
|
|
|
|
std::string rstr = cmSystemTools::LowerCase(str);
|
|
|
|
if ( strncmp(rstr.c_str(), "cont", 4) == 0 )
|
|
|
|
{
|
|
|
|
return cmCTest::CONTINUOUS;
|
|
|
|
}
|
|
|
|
if ( strncmp(rstr.c_str(), "nigh", 4) == 0 )
|
|
|
|
{
|
|
|
|
return cmCTest::NIGHTLY;
|
|
|
|
}
|
|
|
|
return cmCTest::EXPERIMENTAL;
|
|
|
|
}
|
|
|
|
|
2003-12-06 00:39:14 +03:00
|
|
|
#define SPACE_REGEX "[ \t\r\n]"
|
|
|
|
|
2003-08-09 02:28:03 +04:00
|
|
|
std::string cmCTest::GenerateRegressionImages(const std::string& xml)
|
|
|
|
{
|
|
|
|
cmsys::RegularExpression twoattributes(
|
|
|
|
"<DartMeasurement"
|
|
|
|
SPACE_REGEX "*(name|type|encoding|compression)=\"([^\"]*)\""
|
|
|
|
SPACE_REGEX "*(name|type|encoding|compression)=\"([^\"]*)\""
|
|
|
|
SPACE_REGEX "*>([^<]*)</DartMeasurement>");
|
|
|
|
cmsys::RegularExpression threeattributes(
|
|
|
|
"<DartMeasurement"
|
|
|
|
SPACE_REGEX "*(name|type|encoding|compression)=\"([^\"]*)\""
|
|
|
|
SPACE_REGEX "*(name|type|encoding|compression)=\"([^\"]*)\""
|
|
|
|
SPACE_REGEX "*(name|type|encoding|compression)=\"([^\"]*)\""
|
|
|
|
SPACE_REGEX "*>([^<]*)</DartMeasurement>");
|
|
|
|
cmsys::RegularExpression fourattributes(
|
|
|
|
"<DartMeasurement"
|
|
|
|
SPACE_REGEX "*(name|type|encoding|compression)=\"([^\"]*)\""
|
|
|
|
SPACE_REGEX "*(name|type|encoding|compression)=\"([^\"]*)\""
|
|
|
|
SPACE_REGEX "*(name|type|encoding|compression)=\"([^\"]*)\""
|
|
|
|
SPACE_REGEX "*(name|type|encoding|compression)=\"([^\"]*)\""
|
|
|
|
SPACE_REGEX "*>([^<]*)</DartMeasurement>");
|
|
|
|
cmsys::RegularExpression measurementfile(
|
|
|
|
"<DartMeasurementFile"
|
|
|
|
SPACE_REGEX "*(name|type|encoding|compression)=\"([^\"]*)\""
|
|
|
|
SPACE_REGEX "*(name|type|encoding|compression)=\"([^\"]*)\""
|
|
|
|
SPACE_REGEX "*>([^<]*)</DartMeasurementFile>");
|
|
|
|
|
|
|
|
cmOStringStream ostr;
|
|
|
|
bool done = false;
|
|
|
|
std::string cxml = xml;
|
|
|
|
while ( ! done )
|
|
|
|
{
|
|
|
|
if ( twoattributes.find(cxml) )
|
|
|
|
{
|
|
|
|
ostr
|
|
|
|
<< "\t\t\t<NamedMeasurement"
|
|
|
|
<< " " << twoattributes.match(1) << "=\"" << twoattributes.match(2) << "\""
|
|
|
|
<< " " << twoattributes.match(3) << "=\"" << twoattributes.match(4) << "\""
|
|
|
|
<< "><Value>" << twoattributes.match(5)
|
|
|
|
<< "</Value></NamedMeasurement>"
|
|
|
|
<< std::endl;
|
|
|
|
cxml.erase(twoattributes.start(), twoattributes.end() - twoattributes.start());
|
|
|
|
}
|
|
|
|
else if ( threeattributes.find(cxml) )
|
|
|
|
{
|
|
|
|
ostr
|
|
|
|
<< "\t\t\t<NamedMeasurement"
|
|
|
|
<< " " << threeattributes.match(1) << "=\"" << threeattributes.match(2) << "\""
|
|
|
|
<< " " << threeattributes.match(3) << "=\"" << threeattributes.match(4) << "\""
|
|
|
|
<< " " << threeattributes.match(5) << "=\"" << threeattributes.match(6) << "\""
|
|
|
|
<< "><Value>" << threeattributes.match(7)
|
|
|
|
<< "</Value></NamedMeasurement>"
|
|
|
|
<< std::endl;
|
|
|
|
cxml.erase(threeattributes.start(), threeattributes.end() - threeattributes.start());
|
|
|
|
}
|
|
|
|
else if ( fourattributes.find(cxml) )
|
|
|
|
{
|
|
|
|
ostr
|
|
|
|
<< "\t\t\t<NamedMeasurement"
|
|
|
|
<< " " << fourattributes.match(1) << "=\"" << fourattributes.match(2) << "\""
|
|
|
|
<< " " << fourattributes.match(3) << "=\"" << fourattributes.match(4) << "\""
|
|
|
|
<< " " << fourattributes.match(5) << "=\"" << fourattributes.match(6) << "\""
|
|
|
|
<< " " << fourattributes.match(7) << "=\"" << fourattributes.match(8) << "\""
|
|
|
|
<< "><Value>" << fourattributes.match(9)
|
|
|
|
<< "</Value></NamedMeasurement>"
|
|
|
|
<< std::endl;
|
|
|
|
cxml.erase(fourattributes.start(), fourattributes.end() - fourattributes.start());
|
|
|
|
}
|
|
|
|
else if ( measurementfile.find(cxml) )
|
|
|
|
{
|
2004-01-16 01:07:40 +03:00
|
|
|
const std::string& filename = ::CleanString(measurementfile.match(5));
|
2003-08-09 02:28:03 +04:00
|
|
|
if ( cmSystemTools::FileExists(filename.c_str()) )
|
|
|
|
{
|
|
|
|
long len = cmSystemTools::FileLength(filename.c_str());
|
|
|
|
std::ifstream ifs(filename.c_str(), std::ios::in
|
|
|
|
#ifdef _WIN32
|
|
|
|
| std::ios::binary
|
|
|
|
#endif
|
2004-01-26 21:57:26 +03:00
|
|
|
);
|
2003-08-09 02:28:03 +04:00
|
|
|
unsigned char *file_buffer = new unsigned char [ len + 1 ];
|
|
|
|
ifs.read(reinterpret_cast<char*>(file_buffer), len);
|
|
|
|
unsigned char *encoded_buffer = new unsigned char [ static_cast<int>(len * 1.5 + 1) ];
|
|
|
|
|
|
|
|
unsigned long rlen = cmsysBase64_Encode(file_buffer, len, encoded_buffer, 1);
|
|
|
|
unsigned long cc;
|
|
|
|
|
|
|
|
ostr
|
|
|
|
<< "\t\t\t<NamedMeasurement"
|
|
|
|
<< " " << measurementfile.match(1) << "=\"" << measurementfile.match(2) << "\""
|
|
|
|
<< " " << measurementfile.match(3) << "=\"" << measurementfile.match(4) << "\""
|
|
|
|
<< " encoding=\"base64\""
|
|
|
|
<< ">" << std::endl << "\t\t\t\t<Value>";
|
|
|
|
for ( cc = 0; cc < rlen; cc ++ )
|
|
|
|
{
|
|
|
|
ostr << encoded_buffer[cc];
|
|
|
|
if ( cc % 60 == 0 && cc )
|
|
|
|
{
|
|
|
|
ostr << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ostr
|
|
|
|
<< "</Value>" << std::endl << "\t\t\t</NamedMeasurement>"
|
|
|
|
<< std::endl;
|
|
|
|
delete [] file_buffer;
|
|
|
|
delete [] encoded_buffer;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int idx = 4;
|
|
|
|
if ( measurementfile.match(1) == "name" )
|
|
|
|
{
|
|
|
|
idx = 2;
|
|
|
|
}
|
|
|
|
ostr
|
|
|
|
<< "\t\t\t<NamedMeasurement"
|
|
|
|
<< " name=\"" << measurementfile.match(idx) << "\""
|
|
|
|
<< " text=\"text/string\""
|
|
|
|
<< "><Value>File " << filename << " not found</Value></NamedMeasurement>"
|
|
|
|
<< std::endl;
|
2004-01-16 01:07:40 +03:00
|
|
|
std::cout << "File \"" << filename.c_str() << "\" not found." << std::endl;
|
2003-08-09 02:28:03 +04:00
|
|
|
}
|
|
|
|
cxml.erase(measurementfile.start(), measurementfile.end() - measurementfile.start());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ostr.str();
|
|
|
|
}
|
|
|
|
|
2003-08-18 19:30:53 +04:00
|
|
|
int cmCTest::RunMakeCommand(const char* command, std::string* output,
|
2004-01-26 21:57:26 +03:00
|
|
|
int* retVal, const char* dir, bool verbose, int timeout, std::ofstream& ofs)
|
2003-08-08 03:23:49 +04:00
|
|
|
{
|
|
|
|
std::vector<cmStdString> args = cmSystemTools::ParseArguments(command);
|
|
|
|
|
|
|
|
if(args.size() < 1)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-08 03:23:49 +04:00
|
|
|
std::vector<const char*> argv;
|
|
|
|
for(std::vector<cmStdString>::const_iterator a = args.begin();
|
2004-01-26 21:57:26 +03:00
|
|
|
a != args.end(); ++a)
|
2003-08-08 03:23:49 +04:00
|
|
|
{
|
|
|
|
argv.push_back(a->c_str());
|
|
|
|
}
|
|
|
|
argv.push_back(0);
|
|
|
|
|
|
|
|
if ( output )
|
|
|
|
{
|
|
|
|
*output = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-08 03:23:49 +04:00
|
|
|
std::string::size_type tick = 0;
|
|
|
|
std::string::size_type tick_len = 1024;
|
2003-08-09 01:10:37 +04:00
|
|
|
std::string::size_type tick_line_len = 50;
|
2003-08-08 03:23:49 +04:00
|
|
|
|
|
|
|
char* data;
|
|
|
|
int length;
|
|
|
|
if ( !verbose )
|
|
|
|
{
|
2003-08-09 01:10:37 +04:00
|
|
|
std::cout << " Each . represents " << tick_len << " bytes of output" << std::endl;
|
2003-08-08 03:23:49 +04:00
|
|
|
std::cout << " " << std::flush;
|
|
|
|
}
|
2003-12-05 19:53:17 +03:00
|
|
|
while(cmsysProcess_WaitForData(cp, &data, &length, 0))
|
2003-08-08 03:23:49 +04:00
|
|
|
{
|
|
|
|
if ( output )
|
|
|
|
{
|
2003-11-04 19:19:53 +03:00
|
|
|
for(int cc =0; cc < length; ++cc)
|
|
|
|
{
|
|
|
|
if(data[cc] == 0)
|
|
|
|
{
|
|
|
|
data[cc] = '\n';
|
|
|
|
}
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-08 03:23:49 +04:00
|
|
|
output->append(data, length);
|
2003-08-14 21:34:13 +04:00
|
|
|
if ( !verbose )
|
2003-08-08 03:23:49 +04:00
|
|
|
{
|
2003-08-14 21:34:13 +04:00
|
|
|
while ( output->size() > (tick * tick_len) )
|
2003-08-09 01:10:37 +04:00
|
|
|
{
|
2003-08-14 21:34:13 +04:00
|
|
|
tick ++;
|
|
|
|
std::cout << "." << std::flush;
|
|
|
|
if ( tick % tick_line_len == 0 && tick > 0 )
|
|
|
|
{
|
|
|
|
std::cout << " Size: ";
|
|
|
|
std::cout << int((output->size() / 1024.0) + 1) << "K" << std::endl;
|
|
|
|
std::cout << " " << std::flush;
|
|
|
|
}
|
2003-08-09 01:10:37 +04:00
|
|
|
}
|
2003-08-08 03:23:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(verbose)
|
|
|
|
{
|
|
|
|
std::cout.write(data, length);
|
2003-08-14 21:34:13 +04:00
|
|
|
std::cout.flush();
|
2003-08-08 03:23:49 +04:00
|
|
|
}
|
|
|
|
if ( ofs )
|
|
|
|
{
|
|
|
|
ofs.write(data, length);
|
2003-08-08 16:48:42 +04:00
|
|
|
ofs.flush();
|
2003-08-08 03:23:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
std::cout << " Size of output: ";
|
2003-08-09 01:10:37 +04:00
|
|
|
std::cout << int(output->size() / 1024.0) << "K" << std::endl;
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-08 03:23:49 +04:00
|
|
|
cmsysProcess_WaitForExit(cp, 0);
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-18 19:30:53 +04:00
|
|
|
int result = cmsysProcess_GetState(cp);
|
|
|
|
|
|
|
|
if(result == cmsysProcess_State_Exited)
|
2003-08-08 03:23:49 +04:00
|
|
|
{
|
2003-08-18 19:30:53 +04:00
|
|
|
*retVal = cmsysProcess_GetExitValue(cp);
|
2003-08-08 03:23:49 +04:00
|
|
|
}
|
2003-08-18 19:30:53 +04:00
|
|
|
else if(result == cmsysProcess_State_Exception)
|
|
|
|
{
|
|
|
|
*retVal = cmsysProcess_GetExitException(cp);
|
|
|
|
std::cout << "There was an exception: " << *retVal << std::endl;
|
|
|
|
}
|
|
|
|
else if(result == cmsysProcess_State_Expired)
|
|
|
|
{
|
|
|
|
std::cout << "There was a timeout" << std::endl;
|
|
|
|
}
|
|
|
|
else if(result == cmsysProcess_State_Error)
|
2003-08-08 03:23:49 +04:00
|
|
|
{
|
2003-08-18 19:30:53 +04:00
|
|
|
*output += "\n*** ERROR executing: ";
|
|
|
|
*output += cmsysProcess_GetErrorString(cp);
|
2003-08-08 03:23:49 +04:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-08 03:23:49 +04:00
|
|
|
cmsysProcess_Delete(cp);
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-08 03:23:49 +04:00
|
|
|
return result;
|
|
|
|
}
|
2003-02-11 05:52:01 +03:00
|
|
|
|
2004-02-10 23:51:29 +03:00
|
|
|
int cmCTest::RunTest(std::vector<const char*> argv, std::string* output, int *retVal,
|
|
|
|
std::ostream* log)
|
2003-08-14 02:17:11 +04:00
|
|
|
{
|
2004-01-07 19:24:22 +03:00
|
|
|
if(cmSystemTools::SameFile(argv[0], m_CTestSelf.c_str()))
|
|
|
|
{
|
|
|
|
cmCTest inst;
|
|
|
|
std::vector<std::string> args;
|
2004-01-07 19:31:10 +03:00
|
|
|
for(unsigned int i =0; i < argv.size(); ++i)
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
|
|
|
if(argv[i])
|
|
|
|
{
|
|
|
|
args.push_back(argv[i]);
|
|
|
|
}
|
|
|
|
}
|
2004-02-10 23:51:29 +03:00
|
|
|
if ( *log )
|
|
|
|
{
|
|
|
|
*log << "* Run internal CTest" << std::endl;
|
|
|
|
}
|
2004-01-28 21:17:10 +03:00
|
|
|
std::string oldpath = cmSystemTools::GetCurrentWorkingDirectory();
|
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
*retVal = inst.Run(args, output);
|
2004-02-10 23:51:29 +03:00
|
|
|
if ( *log )
|
|
|
|
{
|
|
|
|
*log << output->c_str();
|
|
|
|
}
|
2004-01-28 21:17:10 +03:00
|
|
|
cmSystemTools::ChangeDirectory(oldpath.c_str());
|
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
if(m_Verbose)
|
|
|
|
{
|
|
|
|
std::cout << "Internal cmCTest object used to run test.\n";
|
|
|
|
std::cout << *output << "\n";
|
|
|
|
}
|
|
|
|
return cmsysProcess_State_Exited;
|
|
|
|
}
|
2003-11-26 19:41:57 +03:00
|
|
|
std::vector<char> tempOutput;
|
2003-08-14 02:17:11 +04:00
|
|
|
if ( output )
|
|
|
|
{
|
|
|
|
*output = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
cmsysProcess* cp = cmsysProcess_New();
|
|
|
|
cmsysProcess_SetCommand(cp, &*argv.begin());
|
2004-01-26 21:57:26 +03:00
|
|
|
// std::cout << "Command is: " << argv[0] << std::endl;
|
2003-08-14 02:17:11 +04:00
|
|
|
if(cmSystemTools::GetRunCommandHideConsole())
|
|
|
|
{
|
|
|
|
cmsysProcess_SetOption(cp, cmsysProcess_Option_HideWindow, 1);
|
|
|
|
}
|
|
|
|
cmsysProcess_SetTimeout(cp, m_TimeOut);
|
|
|
|
cmsysProcess_Execute(cp);
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-14 02:17:11 +04:00
|
|
|
char* data;
|
|
|
|
int length;
|
2003-12-05 19:53:17 +03:00
|
|
|
while(cmsysProcess_WaitForData(cp, &data, &length, 0))
|
2003-08-14 02:17:11 +04:00
|
|
|
{
|
|
|
|
if ( output )
|
|
|
|
{
|
2003-11-26 19:41:57 +03:00
|
|
|
tempOutput.insert(tempOutput.end(), data, data+length);
|
2003-08-14 02:17:11 +04:00
|
|
|
}
|
2003-08-14 21:34:13 +04:00
|
|
|
if ( m_Verbose )
|
|
|
|
{
|
|
|
|
std::cout.write(data, length);
|
|
|
|
std::cout.flush();
|
|
|
|
}
|
2004-02-10 23:51:29 +03:00
|
|
|
if ( log )
|
|
|
|
{
|
|
|
|
log->write(data, length);
|
|
|
|
log->flush();
|
|
|
|
}
|
2003-08-14 02:17:11 +04:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-14 02:17:11 +04:00
|
|
|
cmsysProcess_WaitForExit(cp, 0);
|
2003-11-26 19:41:57 +03:00
|
|
|
if(output)
|
|
|
|
{
|
|
|
|
output->append(&*tempOutput.begin(), tempOutput.size());
|
|
|
|
}
|
2003-08-14 02:17:11 +04:00
|
|
|
|
|
|
|
int result = cmsysProcess_GetState(cp);
|
|
|
|
|
|
|
|
if(result == cmsysProcess_State_Exited)
|
|
|
|
{
|
|
|
|
*retVal = cmsysProcess_GetExitValue(cp);
|
|
|
|
}
|
|
|
|
else if(result == cmsysProcess_State_Exception)
|
|
|
|
{
|
|
|
|
*retVal = cmsysProcess_GetExitException(cp);
|
2004-01-28 17:47:31 +03:00
|
|
|
std::string outerr = "\n*** Exception executing: ";
|
|
|
|
outerr += cmsysProcess_GetExceptionString(cp);
|
|
|
|
*output += outerr;
|
|
|
|
if ( m_Verbose )
|
|
|
|
{
|
|
|
|
std::cout << outerr.c_str() << "\n";
|
|
|
|
std::cout.flush();
|
|
|
|
}
|
2003-08-14 02:17:11 +04:00
|
|
|
}
|
|
|
|
else if(result == cmsysProcess_State_Error)
|
|
|
|
{
|
2003-11-05 18:46:16 +03:00
|
|
|
std::string outerr = "\n*** ERROR executing: ";
|
|
|
|
outerr += cmsysProcess_GetErrorString(cp);
|
|
|
|
*output += outerr;
|
|
|
|
if ( m_Verbose )
|
|
|
|
{
|
|
|
|
std::cout << outerr.c_str() << "\n";
|
|
|
|
std::cout.flush();
|
|
|
|
}
|
2003-08-14 02:17:11 +04:00
|
|
|
}
|
|
|
|
cmsysProcess_Delete(cp);
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-14 02:17:11 +04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* cmCTest::GetTestStatus(int status)
|
|
|
|
{
|
|
|
|
static const char statuses[][100] = {
|
|
|
|
"Not Run",
|
|
|
|
"Timeout",
|
|
|
|
"SEGFAULT",
|
|
|
|
"ILLEGAL",
|
|
|
|
"INTERRUPT",
|
|
|
|
"NUMERICAL",
|
|
|
|
"OTHER_FAULT",
|
2003-08-18 22:31:09 +04:00
|
|
|
"Failed",
|
2003-08-14 02:17:11 +04:00
|
|
|
"BAD_COMMAND",
|
|
|
|
"Completed"
|
|
|
|
};
|
|
|
|
|
|
|
|
if ( status < cmCTest::NOT_RUN || status > cmCTest::COMPLETED )
|
|
|
|
{
|
|
|
|
return "No Status";
|
|
|
|
}
|
|
|
|
return statuses[status];
|
|
|
|
}
|
2003-12-02 03:25:51 +03:00
|
|
|
|
2004-01-23 17:44:47 +03:00
|
|
|
void cmCTest::RestoreBackupDirectories(bool backup,
|
2004-01-26 21:57:26 +03:00
|
|
|
const char *srcDir,
|
|
|
|
const char *binDir,
|
|
|
|
const char *backupSrcDir,
|
|
|
|
const char *backupBinDir)
|
2004-01-23 17:44:47 +03:00
|
|
|
{
|
|
|
|
// if we backed up the dirs and the build failed, then restore
|
|
|
|
// the backed up dirs
|
|
|
|
if (backup)
|
|
|
|
{
|
2004-01-26 21:57:26 +03:00
|
|
|
// if for some reason those directories exist then first delete them
|
|
|
|
if (cmSystemTools::FileExists(srcDir))
|
|
|
|
{
|
|
|
|
cmSystemTools::RemoveADirectory(srcDir);
|
|
|
|
}
|
|
|
|
if (cmSystemTools::FileExists(binDir))
|
|
|
|
{
|
|
|
|
cmSystemTools::RemoveADirectory(binDir);
|
|
|
|
}
|
|
|
|
// rename the src and binary directories
|
|
|
|
rename(backupSrcDir, srcDir);
|
|
|
|
rename(backupBinDir, binDir);
|
2004-01-23 17:44:47 +03:00
|
|
|
}
|
|
|
|
}
|
2003-12-02 03:25:51 +03:00
|
|
|
|
|
|
|
int cmCTest::RunConfigurationScript()
|
|
|
|
{
|
|
|
|
m_ConfigurationScript =
|
|
|
|
cmSystemTools::CollapseFullPath(m_ConfigurationScript.c_str());
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-02 03:25:51 +03:00
|
|
|
// make sure the file exists
|
|
|
|
if (!cmSystemTools::FileExists(m_ConfigurationScript.c_str()))
|
|
|
|
{
|
2004-01-23 17:44:47 +03:00
|
|
|
return 1;
|
2003-12-02 03:25:51 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-02 03:25:51 +03:00
|
|
|
// create a cmake instance to read the configuration script
|
|
|
|
cmake cm;
|
|
|
|
cmGlobalGenerator gg;
|
|
|
|
gg.SetCMakeInstance(&cm);
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-02 03:25:51 +03:00
|
|
|
// read in the list file to fill the cache
|
|
|
|
cmLocalGenerator *lg = gg.CreateLocalGenerator();
|
|
|
|
lg->SetGlobalGenerator(&gg);
|
2003-12-03 22:16:21 +03:00
|
|
|
|
|
|
|
// set a variable with the path to the current script
|
|
|
|
lg->GetMakefile()->AddDefinition("CTEST_SCRIPT_DIRECTORY",
|
2004-01-26 21:57:26 +03:00
|
|
|
cmSystemTools::GetFilenamePath(
|
|
|
|
m_ConfigurationScript).c_str());
|
2003-12-03 22:16:21 +03:00
|
|
|
lg->GetMakefile()->AddDefinition("CTEST_SCRIPT_NAME",
|
2004-01-26 21:57:26 +03:00
|
|
|
cmSystemTools::GetFilenameName(
|
|
|
|
m_ConfigurationScript).c_str());
|
2003-12-02 03:25:51 +03:00
|
|
|
if (!lg->GetMakefile()->ReadListFile(0, m_ConfigurationScript.c_str()))
|
|
|
|
{
|
2004-01-23 17:44:47 +03:00
|
|
|
return 2;
|
2003-12-02 03:25:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// no popup widows
|
|
|
|
cmSystemTools::SetRunCommandHideConsole(true);
|
2003-12-09 16:22:55 +03:00
|
|
|
|
2003-12-02 03:25:51 +03:00
|
|
|
// get some info that should be set
|
|
|
|
cmMakefile *mf = lg->GetMakefile();
|
|
|
|
const char *srcDir = mf->GetDefinition("CTEST_SOURCE_DIRECTORY");
|
|
|
|
const char *binDir = mf->GetDefinition("CTEST_BINARY_DIRECTORY");
|
|
|
|
const char *ctestCmd = mf->GetDefinition("CTEST_COMMAND");
|
2003-12-09 16:22:55 +03:00
|
|
|
const char *ctestEnv = mf->GetDefinition("CTEST_ENVIRONMENT");
|
2004-01-23 17:44:47 +03:00
|
|
|
const char *ctestRoot = mf->GetDefinition("CTEST_DASHBOARD_ROOT");
|
2003-12-17 16:36:10 +03:00
|
|
|
bool backup = mf->IsOn("CTEST_BACKUP_AND_RESTORE");
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-23 17:44:47 +03:00
|
|
|
// in order to back we also must have the cvs root
|
|
|
|
const char *cvsCmd = mf->GetDefinition("CTEST_CVS_COMMAND");
|
|
|
|
const char *cvsCheckOut = mf->GetDefinition("CTEST_CVS_CHECKOUT");
|
|
|
|
if (backup && !cvsCheckOut)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Backup was requested without a cvs checkout");
|
|
|
|
return 3;
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-02 03:25:51 +03:00
|
|
|
// make sure the required info is here
|
|
|
|
if (!srcDir || !binDir || !ctestCmd)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Some required settings in the configuration file were missing");
|
2004-01-23 17:44:47 +03:00
|
|
|
return 4;
|
2003-12-02 03:25:51 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-09 16:22:55 +03:00
|
|
|
// set any environment variables
|
|
|
|
if (ctestEnv)
|
|
|
|
{
|
|
|
|
std::vector<std::string> envArgs;
|
|
|
|
cmSystemTools::ExpandListArgument(ctestEnv,envArgs);
|
|
|
|
// for each variable/argument do a putenv
|
2004-01-26 21:32:46 +03:00
|
|
|
for (unsigned i = 0; i < envArgs.size(); ++i)
|
2003-12-09 16:22:55 +03:00
|
|
|
{
|
2004-01-26 21:32:46 +03:00
|
|
|
cmSystemTools::PutEnv(envArgs[i].c_str());
|
2003-12-09 16:22:55 +03:00
|
|
|
}
|
|
|
|
}
|
2003-12-17 16:36:10 +03:00
|
|
|
|
2004-01-23 17:44:47 +03:00
|
|
|
// local variables
|
|
|
|
std::string command;
|
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
|
|
|
bool res;
|
|
|
|
|
2003-12-17 16:36:10 +03:00
|
|
|
// compute the backup names
|
|
|
|
std::string backupSrcDir = srcDir;
|
|
|
|
backupSrcDir += "_CMakeBackup";
|
|
|
|
std::string backupBinDir = binDir;
|
|
|
|
backupBinDir += "_CMakeBackup";
|
|
|
|
|
|
|
|
// backup the binary and src directories if requested
|
|
|
|
if (backup)
|
|
|
|
{
|
|
|
|
// if for some reason those directories exist then first delete them
|
|
|
|
if (cmSystemTools::FileExists(backupSrcDir.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::RemoveADirectory(backupSrcDir.c_str());
|
|
|
|
}
|
|
|
|
if (cmSystemTools::FileExists(backupBinDir.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::RemoveADirectory(backupBinDir.c_str());
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-17 16:36:10 +03:00
|
|
|
// first rename the src and binary directories
|
|
|
|
rename(srcDir, backupSrcDir.c_str());
|
|
|
|
rename(binDir, backupBinDir.c_str());
|
2004-01-23 17:44:47 +03:00
|
|
|
|
2004-01-27 17:42:57 +03:00
|
|
|
// we must now checkout the src dir
|
2004-01-23 17:44:47 +03:00
|
|
|
output = "";
|
|
|
|
res = cmSystemTools::RunSingleCommand(cvsCheckOut, &output,
|
2004-01-26 21:57:26 +03:00
|
|
|
&retVal, ctestRoot,
|
|
|
|
m_Verbose, 0 /*m_TimeOut*/);
|
2004-01-23 17:44:47 +03:00
|
|
|
if (!res || retVal != 0)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Unable to perform cvs checkout ");
|
|
|
|
this->RestoreBackupDirectories(backup, srcDir, binDir,
|
2004-01-26 21:57:26 +03:00
|
|
|
backupSrcDir.c_str(),
|
|
|
|
backupBinDir.c_str());
|
2004-01-23 17:44:47 +03:00
|
|
|
return 6;
|
|
|
|
}
|
2003-12-17 16:36:10 +03:00
|
|
|
}
|
|
|
|
|
2003-12-02 03:25:51 +03:00
|
|
|
// clear the binary directory?
|
|
|
|
if (mf->IsOn("CTEST_START_WITH_EMPTY_BINARY_DIRECTORY"))
|
|
|
|
{
|
|
|
|
// try to avoid deleting directories that we shouldn't
|
|
|
|
std::string check = binDir;
|
|
|
|
check += "/CMakeCache.txt";
|
|
|
|
if (cmSystemTools::FileExists(check.c_str()))
|
|
|
|
{
|
2003-12-17 16:36:10 +03:00
|
|
|
cmSystemTools::RemoveADirectory(binDir);
|
2003-12-02 03:25:51 +03:00
|
|
|
}
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-02 03:25:51 +03:00
|
|
|
// make sure the binary directory exists
|
|
|
|
if (!cmSystemTools::FileExists(binDir))
|
|
|
|
{
|
|
|
|
if (!cmSystemTools::MakeDirectory(binDir))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Unable to create the binary directory");
|
2004-01-23 17:44:47 +03:00
|
|
|
this->RestoreBackupDirectories(backup, srcDir, binDir,
|
2004-01-26 21:57:26 +03:00
|
|
|
backupSrcDir.c_str(),
|
|
|
|
backupBinDir.c_str());
|
2004-01-23 17:44:47 +03:00
|
|
|
return 7;
|
2003-12-02 03:25:51 +03:00
|
|
|
}
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
|
|
|
|
2004-01-16 22:00:30 +03:00
|
|
|
// do an initial cvs update as required
|
2003-12-02 03:25:51 +03:00
|
|
|
if (cvsCmd)
|
|
|
|
{
|
|
|
|
command = cvsCmd;
|
2003-12-12 16:09:05 +03:00
|
|
|
char updateVar[40];
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < 10; ++i)
|
|
|
|
{
|
|
|
|
sprintf(updateVar,"CTEST_EXTRA_UPDATES_%i",i);
|
|
|
|
const char *updateVal = mf->GetDefinition(updateVar);
|
|
|
|
if (updateVal)
|
|
|
|
{
|
|
|
|
std::vector<std::string> cvsArgs;
|
|
|
|
cmSystemTools::ExpandListArgument(updateVal,cvsArgs);
|
|
|
|
if (cvsArgs.size() == 2)
|
|
|
|
{
|
|
|
|
std::string fullCommand = command;
|
|
|
|
fullCommand += " update ";
|
|
|
|
fullCommand += cvsArgs[1];
|
2004-01-21 22:43:25 +03:00
|
|
|
output = "";
|
2003-12-12 16:09:05 +03:00
|
|
|
retVal = 0;
|
|
|
|
res = cmSystemTools::RunSingleCommand(fullCommand.c_str(), &output,
|
2004-01-26 21:57:26 +03:00
|
|
|
&retVal, cvsArgs[0].c_str(),
|
|
|
|
m_Verbose, 0 /*m_TimeOut*/);
|
2003-12-12 16:09:05 +03:00
|
|
|
if (!res || retVal != 0)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Unable to perform extra cvs updates");
|
2004-01-23 17:44:47 +03:00
|
|
|
this->RestoreBackupDirectories(backup, srcDir, binDir,
|
2004-01-26 21:57:26 +03:00
|
|
|
backupSrcDir.c_str(),
|
|
|
|
backupBinDir.c_str());
|
2004-01-23 17:44:47 +03:00
|
|
|
return 8;
|
2003-12-12 16:09:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-12-03 00:50:37 +03:00
|
|
|
}
|
2003-12-02 03:25:51 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-02 03:25:51 +03:00
|
|
|
// put the initial cache into the bin dir
|
|
|
|
if (mf->GetDefinition("CTEST_INITIAL_CACHE"))
|
|
|
|
{
|
2003-12-09 16:22:55 +03:00
|
|
|
const char *initCache = mf->GetDefinition("CTEST_INITIAL_CACHE");
|
|
|
|
std::string cacheFile = binDir;
|
|
|
|
cacheFile += "/CMakeCache.txt";
|
|
|
|
std::ofstream fout(cacheFile.c_str());
|
|
|
|
if(!fout)
|
|
|
|
{
|
2004-01-23 17:44:47 +03:00
|
|
|
this->RestoreBackupDirectories(backup, srcDir, binDir,
|
2004-01-26 21:57:26 +03:00
|
|
|
backupSrcDir.c_str(),
|
|
|
|
backupBinDir.c_str());
|
2004-01-23 17:44:47 +03:00
|
|
|
return 9;
|
2003-12-09 16:22:55 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-09 16:22:55 +03:00
|
|
|
fout.write(initCache, strlen(initCache));
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-09 16:22:55 +03:00
|
|
|
// Make sure the operating system has finished writing the file
|
|
|
|
// before closing it. This will ensure the file is finished before
|
|
|
|
// the check below.
|
|
|
|
fout.flush();
|
|
|
|
fout.close();
|
2003-12-02 03:25:51 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-02 03:25:51 +03:00
|
|
|
// do an initial cmake to setup the DartConfig file
|
|
|
|
const char *cmakeCmd = mf->GetDefinition("CTEST_CMAKE_COMMAND");
|
2004-01-16 22:00:30 +03:00
|
|
|
int cmakeFailed = 0;
|
2003-12-02 03:25:51 +03:00
|
|
|
if (cmakeCmd)
|
|
|
|
{
|
|
|
|
command = cmakeCmd;
|
2003-12-03 22:16:21 +03:00
|
|
|
command += " \"";
|
2003-12-02 03:25:51 +03:00
|
|
|
command += srcDir;
|
2004-01-21 22:43:25 +03:00
|
|
|
output = "";
|
2003-12-03 22:16:21 +03:00
|
|
|
command += "\"";
|
2003-12-02 03:25:51 +03:00
|
|
|
retVal = 0;
|
|
|
|
res = cmSystemTools::RunSingleCommand(command.c_str(), &output,
|
2004-01-26 21:57:26 +03:00
|
|
|
&retVal, binDir,
|
|
|
|
m_Verbose, 0 /*m_TimeOut*/);
|
2003-12-03 00:50:37 +03:00
|
|
|
if (!res || retVal != 0)
|
|
|
|
{
|
2004-01-16 22:00:30 +03:00
|
|
|
// even if this fails continue to the next step
|
|
|
|
cmakeFailed = 1;
|
2003-12-03 00:50:37 +03:00
|
|
|
}
|
2003-12-02 03:25:51 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-02 03:25:51 +03:00
|
|
|
// run ctest
|
|
|
|
command = ctestCmd;
|
2004-01-21 22:43:25 +03:00
|
|
|
output = "";
|
2003-12-02 03:25:51 +03:00
|
|
|
retVal = 0;
|
|
|
|
res = cmSystemTools::RunSingleCommand(command.c_str(), &output,
|
2004-01-26 21:57:26 +03:00
|
|
|
&retVal, binDir,
|
|
|
|
m_Verbose, 0 /*m_TimeOut*/);
|
2003-12-03 22:16:21 +03:00
|
|
|
|
2003-12-17 16:36:10 +03:00
|
|
|
// did something critical fail in ctest
|
2004-01-16 22:00:30 +03:00
|
|
|
if (!res || cmakeFailed ||
|
2004-01-26 21:57:26 +03:00
|
|
|
retVal & CTEST_BUILD_ERRORS)
|
2003-12-03 00:50:37 +03:00
|
|
|
{
|
2004-01-23 17:44:47 +03:00
|
|
|
this->RestoreBackupDirectories(backup, srcDir, binDir,
|
2004-01-26 21:57:26 +03:00
|
|
|
backupSrcDir.c_str(),
|
|
|
|
backupBinDir.c_str());
|
2004-01-16 22:00:30 +03:00
|
|
|
if (cmakeFailed)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Unable to run cmake");
|
2004-01-23 17:44:47 +03:00
|
|
|
return 10;
|
2004-01-16 22:00:30 +03:00
|
|
|
}
|
2003-12-03 00:50:37 +03:00
|
|
|
cmSystemTools::Error("Unable to run ctest");
|
2003-12-19 01:36:27 +03:00
|
|
|
if (!res)
|
|
|
|
{
|
2004-01-23 17:44:47 +03:00
|
|
|
return 11;
|
2003-12-19 01:36:27 +03:00
|
|
|
}
|
2004-01-23 17:44:47 +03:00
|
|
|
return retVal * 100;
|
2003-12-03 00:50:37 +03:00
|
|
|
}
|
2003-12-02 03:25:51 +03:00
|
|
|
|
2004-01-23 17:44:47 +03:00
|
|
|
// if all was succesful, delete the backup dirs to free up disk space
|
|
|
|
if (backup)
|
|
|
|
{
|
|
|
|
cmSystemTools::RemoveADirectory(backupSrcDir.c_str());
|
|
|
|
cmSystemTools::RemoveADirectory(backupBinDir.c_str());
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-02 03:25:51 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2003-12-16 01:26:00 +03:00
|
|
|
|
2003-12-16 01:28:46 +03:00
|
|
|
void cmCTest::StartXML(std::ostream& ostr)
|
2003-12-16 01:26:00 +03:00
|
|
|
{
|
|
|
|
ostr << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
|
|
|
<< "<Site BuildName=\"" << m_DartConfiguration["BuildName"]
|
|
|
|
<< "\" BuildStamp=\"" << m_CurrentTag << "-"
|
|
|
|
<< this->GetTestModelString() << "\" Name=\""
|
2004-01-07 03:13:55 +03:00
|
|
|
<< m_DartConfiguration["Site"] << "\" Generator=\"ctest\">" << std::endl;
|
2003-12-16 01:26:00 +03:00
|
|
|
}
|
|
|
|
|
2003-12-16 01:28:46 +03:00
|
|
|
void cmCTest::EndXML(std::ostream& ostr)
|
2003-12-16 01:26:00 +03:00
|
|
|
{
|
|
|
|
ostr << "</Site>" << std::endl;
|
|
|
|
}
|
|
|
|
|
2003-12-16 22:43:13 +03:00
|
|
|
bool cmCTest::ProcessMemCheckPurifyOutput(const std::string&, std::string& log,
|
|
|
|
int* results)
|
|
|
|
{
|
|
|
|
if ( !cmSystemTools::FileExists(m_MemoryTesterOutputFile.c_str()) )
|
|
|
|
{
|
|
|
|
log = "Cannot find Purify output file: " + m_MemoryTesterOutputFile;
|
|
|
|
std::cerr << log.c_str() << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ifstream ifs(m_MemoryTesterOutputFile.c_str());
|
|
|
|
if ( !ifs )
|
|
|
|
{
|
|
|
|
log = "Cannot read Purify output file: " + m_MemoryTesterOutputFile;
|
|
|
|
std::cerr << log.c_str() << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmOStringStream ostr;
|
|
|
|
log = "";
|
|
|
|
|
2003-12-17 01:30:24 +03:00
|
|
|
cmsys::RegularExpression pfW("^\\[[WEI]\\] ([A-Z][A-Z][A-Z][A-Z]*): ");
|
2003-12-16 22:43:13 +03:00
|
|
|
|
|
|
|
std::string line;
|
|
|
|
while ( cmSystemTools::GetLineFromStream(ifs, line) )
|
|
|
|
{
|
|
|
|
int failure = cmCTest::NO_MEMORY_FAULT;
|
|
|
|
if ( pfW.find(line) )
|
|
|
|
{
|
|
|
|
int cc;
|
|
|
|
for ( cc = 0; cc < cmCTest::NO_MEMORY_FAULT; cc ++ )
|
|
|
|
{
|
|
|
|
if ( pfW.match(1) == cmCTestMemCheckResultStrings[cc] )
|
|
|
|
{
|
|
|
|
failure = cc;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-12-17 01:30:24 +03:00
|
|
|
if ( cc == cmCTest::NO_MEMORY_FAULT )
|
2003-12-16 22:43:13 +03:00
|
|
|
{
|
|
|
|
std::cerr<< "Unknown Purify memory fault: " << pfW.match(1) << std::endl;
|
|
|
|
ostr << "*** Unknown Purify memory fault: " << pfW.match(1) << std::endl;
|
|
|
|
}
|
|
|
|
}
|
2003-12-17 01:30:24 +03:00
|
|
|
if ( failure != NO_MEMORY_FAULT )
|
|
|
|
{
|
|
|
|
ostr << "<b>" << cmCTestMemCheckResultStrings[failure] << "</b> ";
|
|
|
|
results[failure] ++;
|
|
|
|
}
|
|
|
|
ostr << cmCTest::MakeXMLSafe(line) << std::endl;
|
2003-12-16 22:43:13 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-12-16 22:43:13 +03:00
|
|
|
log = ostr.str();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCTest::ProcessMemCheckValgrindOutput(const std::string& str, std::string& log,
|
|
|
|
int* results)
|
2003-12-16 01:26:00 +03:00
|
|
|
{
|
|
|
|
std::vector<cmStdString> lines;
|
|
|
|
cmSystemTools::Split(str.c_str(), lines);
|
|
|
|
|
|
|
|
std::string::size_type cc;
|
|
|
|
|
|
|
|
cmOStringStream ostr;
|
|
|
|
log = "";
|
|
|
|
|
|
|
|
cmsys::RegularExpression valgrindLine("^==[0-9][0-9]*==");
|
|
|
|
|
2003-12-16 22:43:13 +03:00
|
|
|
cmsys::RegularExpression vgFIM(
|
|
|
|
"== .*Invalid free\\(\\) / delete / delete\\[\\]");
|
|
|
|
cmsys::RegularExpression vgFMM(
|
|
|
|
"== .*Mismatched free\\(\\) / delete / delete \\[\\]");
|
|
|
|
cmsys::RegularExpression vgMLK(
|
|
|
|
"== .*[0-9][0-9]* bytes in [0-9][0-9]* blocks are definitely lost"
|
|
|
|
" in loss record [0-9][0-9]* of [0-9]");
|
|
|
|
cmsys::RegularExpression vgPAR(
|
|
|
|
"== .*Syscall param .* contains unaddressable byte\\(s\\)");
|
|
|
|
cmsys::RegularExpression vgMPK1(
|
|
|
|
"== .*[0-9][0-9]* bytes in [0-9][0-9]* blocks are possibly lost in"
|
|
|
|
" loss record [0-9][0-9]* of [0-9]");
|
|
|
|
cmsys::RegularExpression vgMPK2(
|
|
|
|
"== .*[0-9][0-9]* bytes in [0-9][0-9]* blocks are still reachable"
|
|
|
|
" in loss record [0-9][0-9]* of [0-9]");
|
|
|
|
cmsys::RegularExpression vgUMC(
|
|
|
|
"== .*Conditional jump or move depends on uninitialised value\\(s\\)");
|
2003-12-16 01:26:00 +03:00
|
|
|
cmsys::RegularExpression vgUMR1("== .*Use of uninitialised value of size [0-9][0-9]*");
|
|
|
|
cmsys::RegularExpression vgUMR2("== .*Invalid read of size [0-9][0-9]*");
|
|
|
|
cmsys::RegularExpression vgUMR3("== .*Jump to the invalid address ");
|
2003-12-16 22:43:13 +03:00
|
|
|
cmsys::RegularExpression vgUMR4(
|
|
|
|
"== .*Syscall param .* contains uninitialised or unaddressable byte\\(s\\)");
|
2003-12-16 01:26:00 +03:00
|
|
|
cmsys::RegularExpression vgIPW("== .*Invalid write of size [0-9]");
|
|
|
|
|
|
|
|
for ( cc = 0; cc < lines.size(); cc ++ )
|
|
|
|
{
|
|
|
|
if ( valgrindLine.find(lines[cc]) )
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
int failure = cmCTest::NO_MEMORY_FAULT;
|
2004-01-26 21:57:26 +03:00
|
|
|
if ( vgFIM.find(lines[cc]) ) { failure = cmCTest::FIM; }
|
2003-12-16 22:43:13 +03:00
|
|
|
else if ( vgFMM.find(lines[cc]) ) { failure = cmCTest::FMM; }
|
|
|
|
else if ( vgMLK.find(lines[cc]) ) { failure = cmCTest::MLK; }
|
|
|
|
else if ( vgPAR.find(lines[cc]) ) { failure = cmCTest::PAR; }
|
|
|
|
else if ( vgMPK1.find(lines[cc]) ){ failure = cmCTest::MPK; }
|
|
|
|
else if ( vgMPK2.find(lines[cc]) ){ failure = cmCTest::MPK; }
|
|
|
|
else if ( vgUMC.find(lines[cc]) ) { failure = cmCTest::UMC; }
|
|
|
|
else if ( vgUMR1.find(lines[cc]) ){ failure = cmCTest::UMR; }
|
|
|
|
else if ( vgUMR2.find(lines[cc]) ){ failure = cmCTest::UMR; }
|
|
|
|
else if ( vgUMR3.find(lines[cc]) ){ failure = cmCTest::UMR; }
|
|
|
|
else if ( vgUMR4.find(lines[cc]) ){ failure = cmCTest::UMR; }
|
|
|
|
else if ( vgIPW.find(lines[cc]) ) { failure = cmCTest::IPW; }
|
|
|
|
|
|
|
|
if ( failure != cmCTest::NO_MEMORY_FAULT )
|
|
|
|
{
|
|
|
|
ostr << "<b>" << cmCTestMemCheckResultStrings[failure] << "</b> ";
|
|
|
|
results[failure] ++;
|
|
|
|
}
|
|
|
|
ostr << cmCTest::MakeXMLSafe(lines[cc]) << std::endl;
|
2003-12-16 01:26:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
log = ostr.str();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCTest::ProcessMemCheckOutput(const std::string& str, std::string& log, int* results)
|
|
|
|
{
|
|
|
|
std::string::size_type cc;
|
|
|
|
for ( cc = 0; cc < cmCTest::NO_MEMORY_FAULT; cc ++ )
|
|
|
|
{
|
|
|
|
results[cc] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( m_MemoryTesterStyle == cmCTest::VALGRIND )
|
|
|
|
{
|
|
|
|
return ProcessMemCheckValgrindOutput(str, log, results);
|
|
|
|
}
|
|
|
|
else if ( m_MemoryTesterStyle == cmCTest::PURIFY )
|
|
|
|
{
|
2003-12-16 22:43:13 +03:00
|
|
|
return ProcessMemCheckPurifyOutput(str, log, results);
|
2003-12-16 01:26:00 +03:00
|
|
|
}
|
|
|
|
else if ( m_MemoryTesterStyle == cmCTest::BOUNDS_CHECKER )
|
|
|
|
{
|
|
|
|
log.append("\nMemory checking style used was: ");
|
|
|
|
log.append("Bounds Checker");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
log.append("\nMemory checking style used was: ");
|
|
|
|
log.append("None that I know");
|
|
|
|
log = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2003-12-26 23:02:26 +03:00
|
|
|
|
|
|
|
int cmCTest::GenerateDartNotesOutput(std::ostream& os, const cmCTest::tm_VectorOfStrings& files)
|
|
|
|
{
|
|
|
|
cmCTest::tm_VectorOfStrings::const_iterator it;
|
|
|
|
for ( it = files.begin(); it != files.end(); it ++ )
|
|
|
|
{
|
|
|
|
if ( !cmSystemTools::FileExists(it->c_str()) )
|
|
|
|
{
|
|
|
|
std::cerr << "Error creating notes. File " << it->c_str() << " does not exists" << std::endl;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
|
|
|
<< "<?xml-stylesheet type=\"text/xsl\" href=\"Dart/Source/Server/XSL/Build.xsl <file:///Dart/Source/Server/XSL/Build.xsl> \"?>\n"
|
|
|
|
<< "<Site BuildName=\"" << m_DartConfiguration["BuildName"] << "\" BuildStamp=\""
|
|
|
|
<< m_CurrentTag << "-" << this->GetTestModelString() << "\" Name=\""
|
2004-01-07 03:13:55 +03:00
|
|
|
<< m_DartConfiguration["Site"] << "\" Generator=\"ctest\">\n"
|
2003-12-26 23:02:26 +03:00
|
|
|
<< "<Notes>" << std::endl;
|
|
|
|
|
|
|
|
for ( it = files.begin(); it != files.end(); it ++ )
|
|
|
|
{
|
|
|
|
std::cout << "\tAdd file: " << it->c_str() << std::endl;
|
|
|
|
std::string note_time = ::CurrentTime();
|
|
|
|
os << "<Note>\n"
|
|
|
|
<< "<DateTime>" << note_time << "</DateTime>\n"
|
|
|
|
<< "<Text>" << std::endl;
|
|
|
|
std::ifstream ifs(it->c_str());
|
|
|
|
if ( ifs )
|
|
|
|
{
|
|
|
|
std::string line;
|
|
|
|
while ( cmSystemTools::GetLineFromStream(ifs, line) )
|
|
|
|
{
|
|
|
|
os << this->MakeXMLSafe(line) << std::endl;
|
|
|
|
}
|
|
|
|
ifs.close();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
os << "Problem reading file: " << it->c_str() << std::endl;
|
|
|
|
std::cerr << "Problem reading file: " << it->c_str() << " while creating notes" << std::endl;
|
|
|
|
}
|
|
|
|
os << "</Text>\n"
|
|
|
|
<< "</Note>" << std::endl;
|
|
|
|
}
|
|
|
|
os << "</Notes>\n"
|
|
|
|
<< "</Site>" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cmCTest::GenerateNotesFile(const char* cfiles)
|
|
|
|
{
|
|
|
|
if ( !cfiles )
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<cmStdString> files;
|
|
|
|
|
|
|
|
std::cout << "Create notes file" << std::endl;
|
|
|
|
|
|
|
|
files = cmSystemTools::SplitString(cfiles, ';');
|
|
|
|
if ( files.size() == 0 )
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ofstream ofs;
|
|
|
|
if ( !this->OpenOutputFile(m_CurrentTag, "Notes.xml", ofs) )
|
|
|
|
{
|
|
|
|
std::cerr << "Cannot open notes file" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->GenerateDartNotesOutput(ofs, files);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
int cmCTest::Run(std::vector<std::string>const& args, std::string* output)
|
|
|
|
{
|
|
|
|
this->FindRunningCMake(args[0].c_str());
|
|
|
|
bool cmakeAndTest = false;
|
|
|
|
for(unsigned int i=1; i < args.size(); ++i)
|
|
|
|
{
|
|
|
|
std::string arg = args[i];
|
|
|
|
if(arg.find("-C",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
this->m_ConfigType = args[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
if( arg.find("-V",0) == 0 || arg.find("--verbose",0) == 0 )
|
|
|
|
{
|
|
|
|
this->m_Verbose = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( arg.find("-N",0) == 0 || arg.find("--show-only",0) == 0 )
|
|
|
|
{
|
|
|
|
this->m_ShowOnly = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( arg.find("-S",0) == 0 && i < args.size() - 1 )
|
|
|
|
{
|
|
|
|
this->m_RunConfigurationScript = true;
|
|
|
|
i++;
|
|
|
|
this->m_ConfigurationScript = args[i];
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
if( arg.find("-D",0) == 0 && i < args.size() - 1 )
|
|
|
|
{
|
|
|
|
this->m_DartMode = true;
|
|
|
|
i++;
|
|
|
|
std::string targ = args[i];
|
|
|
|
if ( targ == "Experimental" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Start");
|
|
|
|
this->SetTest("Configure");
|
|
|
|
this->SetTest("Build");
|
|
|
|
this->SetTest("Test");
|
|
|
|
this->SetTest("Coverage");
|
|
|
|
this->SetTest("Submit");
|
|
|
|
}
|
|
|
|
else if ( targ == "ExperimentalStart" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Start");
|
|
|
|
}
|
|
|
|
else if ( targ == "ExperimentalUpdate" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Update");
|
|
|
|
}
|
|
|
|
else if ( targ == "ExperimentalConfigure" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Configure");
|
|
|
|
}
|
|
|
|
else if ( targ == "ExperimentalBuild" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Build");
|
|
|
|
}
|
|
|
|
else if ( targ == "ExperimentalTest" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Test");
|
|
|
|
}
|
|
|
|
else if ( targ == "ExperimentalMemCheck" || targ == "ExperimentalPurify" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("MemCheck");
|
|
|
|
}
|
|
|
|
else if ( targ == "ExperimentalCoverage" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Coverage");
|
|
|
|
}
|
|
|
|
else if ( targ == "ExperimentalSubmit" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Submit");
|
|
|
|
}
|
|
|
|
else if ( targ == "Continuous" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Start");
|
|
|
|
this->SetTest("Update");
|
|
|
|
this->SetTest("Configure");
|
|
|
|
this->SetTest("Build");
|
|
|
|
this->SetTest("Test");
|
|
|
|
this->SetTest("Coverage");
|
|
|
|
this->SetTest("Submit");
|
|
|
|
}
|
|
|
|
else if ( targ == "ContinuousStart" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Start");
|
|
|
|
}
|
|
|
|
else if ( targ == "ContinuousUpdate" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Update");
|
|
|
|
}
|
|
|
|
else if ( targ == "ContinuousConfigure" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Configure");
|
|
|
|
}
|
|
|
|
else if ( targ == "ContinuousBuild" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Build");
|
|
|
|
}
|
|
|
|
else if ( targ == "ContinuousTest" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Test");
|
|
|
|
}
|
|
|
|
else if ( targ == "ContinuousMemCheck" || targ == "ContinuousPurify" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("MemCheck");
|
|
|
|
}
|
|
|
|
else if ( targ == "ContinuousCoverage" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Coverage");
|
|
|
|
}
|
|
|
|
else if ( targ == "ContinuousSubmit" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Submit");
|
|
|
|
}
|
|
|
|
else if ( targ == "Nightly" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Start");
|
|
|
|
this->SetTest("Update");
|
|
|
|
this->SetTest("Configure");
|
|
|
|
this->SetTest("Build");
|
|
|
|
this->SetTest("Test");
|
|
|
|
this->SetTest("Coverage");
|
|
|
|
this->SetTest("Submit");
|
|
|
|
}
|
|
|
|
else if ( targ == "NightlyStart" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Start");
|
|
|
|
}
|
|
|
|
else if ( targ == "NightlyUpdate" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Update");
|
|
|
|
}
|
|
|
|
else if ( targ == "NightlyConfigure" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Configure");
|
|
|
|
}
|
|
|
|
else if ( targ == "NightlyBuild" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Build");
|
|
|
|
}
|
|
|
|
else if ( targ == "NightlyTest" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Test");
|
|
|
|
}
|
|
|
|
else if ( targ == "NightlyMemCheck" || targ == "NightlyPurify" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("MemCheck");
|
|
|
|
}
|
|
|
|
else if ( targ == "NightlyCoverage" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Coverage");
|
|
|
|
}
|
|
|
|
else if ( targ == "NightlySubmit" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Submit");
|
|
|
|
}
|
|
|
|
else if ( targ == "MemoryCheck" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Start");
|
|
|
|
this->SetTest("Configure");
|
|
|
|
this->SetTest("Build");
|
|
|
|
this->SetTest("MemCheck");
|
|
|
|
this->SetTest("Coverage");
|
|
|
|
this->SetTest("Submit");
|
|
|
|
}
|
|
|
|
else if ( targ == "NightlyMemoryCheck" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Start");
|
|
|
|
this->SetTest("Update");
|
|
|
|
this->SetTest("Configure");
|
|
|
|
this->SetTest("Build");
|
|
|
|
this->SetTest("MemCheck");
|
|
|
|
this->SetTest("Coverage");
|
|
|
|
this->SetTest("Submit");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ( arg.find("-T",0) == 0 ) &&
|
2004-01-26 21:57:26 +03:00
|
|
|
(i < args.size() -1) )
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
|
|
|
this->m_DartMode = true;
|
|
|
|
i++;
|
|
|
|
this->SetTest(args[i].c_str());
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
if( ( arg.find("-M",0) == 0 || arg.find("--test-model",0) == 0 ) &&
|
2004-01-26 21:57:26 +03:00
|
|
|
(i < args.size() -1) )
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
|
|
|
i++;
|
|
|
|
std::string const& str = args[i];
|
|
|
|
if ( str == "NIGHTLY" || str == "nightly" || str == "Nightly" )
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
}
|
|
|
|
else if ( str == "CONTINUOUS" || str == "continuous" ||
|
2004-01-26 21:57:26 +03:00
|
|
|
str == "Continuous" )
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
std::cout << "Continuous" << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
}
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
if(arg.find("-R",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
this->m_UseIncludeRegExp = true;
|
|
|
|
i++;
|
|
|
|
this->m_IncludeRegExp = args[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
if(arg.find("-E",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
this->m_UseExcludeRegExp = true;
|
|
|
|
i++;
|
|
|
|
this->m_ExcludeRegExp = args[i];
|
|
|
|
this->m_UseExcludeRegExpFirst = this->m_UseIncludeRegExp ? false : true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(arg.find("-A",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
this->m_DartMode = true;
|
|
|
|
this->SetTest("Notes");
|
|
|
|
i++;
|
|
|
|
this->SetNotesFiles(args[i].c_str());
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
// --build-and-test options
|
|
|
|
if(arg.find("--build-and-test",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
cmakeAndTest = true;
|
|
|
|
if(i+2 < args.size())
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
m_SourceDir = args[i];
|
|
|
|
i++;
|
|
|
|
m_BinaryDir = args[i];
|
|
|
|
// dir must exist before CollapseFullPath is called
|
|
|
|
cmSystemTools::MakeDirectory(m_BinaryDir.c_str());
|
|
|
|
m_BinaryDir = cmSystemTools::CollapseFullPath(m_BinaryDir.c_str());
|
|
|
|
m_SourceDir = cmSystemTools::CollapseFullPath(m_SourceDir.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr << "--build-and-test must have source and binary dir\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(arg.find("--build-target",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
m_BuildTarget = args[i];
|
|
|
|
}
|
2004-01-13 19:22:47 +03:00
|
|
|
if(arg.find("--build-nocmake",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
m_BuildNoCMake = true;
|
|
|
|
}
|
2004-01-09 21:35:18 +03:00
|
|
|
if(arg.find("--build-run-dir",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
m_BuildRunDir = args[i];
|
|
|
|
}
|
2004-01-07 19:24:22 +03:00
|
|
|
if(arg.find("--build-two-config",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
m_BuildTwoConfig = true;
|
|
|
|
}
|
|
|
|
if(arg.find("--build-exe-dir",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
m_ExecutableDirectory = args[i];
|
|
|
|
}
|
|
|
|
if(arg.find("--build-generator",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
m_BuildGenerator = args[i];
|
|
|
|
}
|
|
|
|
if(arg.find("--build-project",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
m_BuildProject = args[i];
|
|
|
|
}
|
|
|
|
if(arg.find("--build-makeprogram",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
m_BuildMakeProgram = args[i];
|
|
|
|
}
|
|
|
|
if(arg.find("--build-noclean",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
m_BuildNoClean = true;
|
|
|
|
}
|
|
|
|
if(arg.find("--build-options",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
bool done = false;
|
|
|
|
while(i < args.size() && !done)
|
|
|
|
{
|
|
|
|
m_BuildOptions.push_back(args[i]);
|
|
|
|
if(i+1 < args.size()
|
2004-01-26 21:57:26 +03:00
|
|
|
&& (args[i+1] == "--build-target" || args[i+1] == "--test-command"))
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(arg.find("--test-command",0) == 0 && i < args.size() - 1)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
m_TestCommand = args[i];
|
|
|
|
while(i+1 < args.size())
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
m_TestCommandArgs.push_back(args[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
if(cmakeAndTest)
|
|
|
|
{
|
2004-01-21 22:27:01 +03:00
|
|
|
cmSystemTools::ResetErrorOccuredFlag();
|
|
|
|
cmListFileCache::GetInstance()->ClearCache();
|
|
|
|
int retv = this->RunCMakeAndTest(output);
|
|
|
|
cmSystemTools::ResetErrorOccuredFlag();
|
|
|
|
cmListFileCache::GetInstance()->ClearCache();
|
2004-01-28 01:12:41 +03:00
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
|
|
|
cmDynamicLoader::FlushCache();
|
|
|
|
#endif
|
2004-01-21 22:27:01 +03:00
|
|
|
return retv;
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
int res;
|
|
|
|
// call process directory
|
|
|
|
if (this->m_RunConfigurationScript)
|
|
|
|
{
|
|
|
|
res = this->RunConfigurationScript();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-01-26 21:57:26 +03:00
|
|
|
if ( !this->Initialize() )
|
|
|
|
{
|
|
|
|
res = 12;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
res = this->ProcessTests();
|
|
|
|
}
|
2004-01-07 19:24:22 +03:00
|
|
|
this->Finalize();
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCTest::FindRunningCMake(const char* arg0)
|
|
|
|
{
|
|
|
|
// Find our own executable.
|
|
|
|
std::vector<cmStdString> failures;
|
|
|
|
m_CTestSelf = arg0;
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(m_CTestSelf);
|
|
|
|
failures.push_back(m_CTestSelf);
|
|
|
|
m_CTestSelf = cmSystemTools::FindProgram(m_CTestSelf.c_str());
|
|
|
|
if(!cmSystemTools::FileExists(m_CTestSelf.c_str()))
|
|
|
|
{
|
|
|
|
failures.push_back(m_CTestSelf);
|
|
|
|
m_CTestSelf = "/usr/local/bin/ctest";
|
|
|
|
}
|
|
|
|
if(!cmSystemTools::FileExists(m_CTestSelf.c_str()))
|
|
|
|
{
|
|
|
|
failures.push_back(m_CTestSelf);
|
|
|
|
cmOStringStream msg;
|
|
|
|
msg << "CTEST can not find the command line program cmake.\n";
|
|
|
|
msg << " argv[0] = \"" << arg0 << "\"\n";
|
|
|
|
msg << " Attempted paths:\n";
|
|
|
|
std::vector<cmStdString>::iterator i;
|
|
|
|
for(i=failures.begin(); i != failures.end(); ++i)
|
|
|
|
{
|
|
|
|
msg << " \"" << i->c_str() << "\"\n";
|
|
|
|
}
|
|
|
|
cmSystemTools::Error(msg.str().c_str());
|
|
|
|
}
|
|
|
|
std::string dir;
|
|
|
|
std::string file;
|
|
|
|
if(cmSystemTools::SplitProgramPath(m_CTestSelf.c_str(),
|
2004-01-26 21:57:26 +03:00
|
|
|
dir,
|
|
|
|
file,
|
|
|
|
true))
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
|
|
|
m_CMakeSelf = dir += "/cmake";
|
|
|
|
m_CMakeSelf += cmSystemTools::GetExecutableExtension();
|
|
|
|
if(!cmSystemTools::FileExists(m_CMakeSelf.c_str()))
|
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
|
|
|
failures.push_back(m_CMakeSelf);
|
|
|
|
msg << "CTEST can not find the command line program cmake.\n";
|
|
|
|
msg << " argv[0] = \"" << arg0 << "\"\n";
|
|
|
|
msg << " Attempted path:\n";
|
|
|
|
msg << " \"" << m_CMakeSelf.c_str() << "\"\n";
|
|
|
|
cmSystemTools::Error(msg.str().c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-07 20:50:10 +03:00
|
|
|
void CMakeMessageCallback(const char* m, const char*, bool&, void* s)
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
|
|
|
std::string* out = (std::string*)s;
|
|
|
|
*out += m;
|
|
|
|
*out += "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMakeStdoutCallback(const char* m, int len, void* s)
|
|
|
|
{
|
|
|
|
std::string* out = (std::string*)s;
|
|
|
|
out->append(m, len);
|
|
|
|
}
|
|
|
|
|
2004-01-13 19:22:47 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
int cmCTest::RunCMakeAndTest(std::string* outstring)
|
|
|
|
{
|
2004-01-13 19:22:47 +03:00
|
|
|
unsigned int k;
|
2004-01-07 19:24:22 +03:00
|
|
|
std::string cmakeOutString;
|
|
|
|
cmSystemTools::SetErrorCallback(CMakeMessageCallback, &cmakeOutString);
|
|
|
|
cmSystemTools::SetStdoutCallback(CMakeStdoutCallback, &cmakeOutString);
|
|
|
|
cmOStringStream out;
|
|
|
|
cmake cm;
|
|
|
|
// default to the build type of ctest itself
|
|
|
|
if(m_ConfigType.size() == 0)
|
|
|
|
{
|
|
|
|
#ifdef CMAKE_INTDIR
|
|
|
|
m_ConfigType = CMAKE_INTDIR;
|
|
|
|
#endif
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
std::string cwd = cmSystemTools::GetCurrentWorkingDirectory();
|
|
|
|
out << "Internal cmake changing into directory: " << m_BinaryDir << "\n";
|
|
|
|
if (!cmSystemTools::FileIsDirectory(m_BinaryDir.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::MakeDirectory(m_BinaryDir.c_str());
|
|
|
|
}
|
|
|
|
cmSystemTools::ChangeDirectory(m_BinaryDir.c_str());
|
2004-01-13 19:22:47 +03:00
|
|
|
if(!m_BuildNoCMake)
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
2004-01-13 19:22:47 +03:00
|
|
|
std::vector<std::string> args;
|
|
|
|
args.push_back(m_CMakeSelf);
|
|
|
|
args.push_back(m_SourceDir);
|
|
|
|
if(m_BuildGenerator.size())
|
2004-01-09 22:05:55 +03:00
|
|
|
{
|
2004-01-13 19:22:47 +03:00
|
|
|
std::string generator = "-G";
|
|
|
|
generator += m_BuildGenerator;
|
|
|
|
args.push_back(generator);
|
2004-01-09 22:05:55 +03:00
|
|
|
}
|
2004-02-03 02:23:04 +03:00
|
|
|
if ( m_ConfigType.size() > 0 )
|
|
|
|
{
|
|
|
|
std::string btype = "-DBUILD_TYPE:STRING=" + m_ConfigType;
|
|
|
|
args.push_back(btype);
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-13 19:22:47 +03:00
|
|
|
for(k=0; k < m_BuildOptions.size(); ++k)
|
2004-01-09 22:05:55 +03:00
|
|
|
{
|
2004-01-13 19:22:47 +03:00
|
|
|
args.push_back(m_BuildOptions[k]);
|
2004-01-09 22:05:55 +03:00
|
|
|
}
|
2004-01-07 19:24:22 +03:00
|
|
|
if (cm.Run(args) != 0)
|
|
|
|
{
|
2004-01-09 22:05:55 +03:00
|
|
|
out << "Error: cmake execution failed\n";
|
|
|
|
out << cmakeOutString << "\n";
|
2004-01-07 19:24:22 +03:00
|
|
|
// return to the original directory
|
|
|
|
cmSystemTools::ChangeDirectory(cwd.c_str());
|
2004-01-09 22:05:55 +03:00
|
|
|
if(outstring)
|
|
|
|
{
|
|
|
|
*outstring = out.str();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr << out << "\n";
|
|
|
|
}
|
2004-01-07 19:24:22 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2004-01-13 19:22:47 +03:00
|
|
|
if(m_BuildTwoConfig)
|
|
|
|
{
|
|
|
|
if (cm.Run(args) != 0)
|
|
|
|
{
|
|
|
|
out << "Error: cmake execution failed\n";
|
|
|
|
out << cmakeOutString << "\n";
|
|
|
|
// return to the original directory
|
|
|
|
cmSystemTools::ChangeDirectory(cwd.c_str());
|
|
|
|
if(outstring)
|
|
|
|
{
|
|
|
|
*outstring = out.str();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr << out << "\n";
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
cmSystemTools::SetErrorCallback(0, 0);
|
2004-01-09 22:05:55 +03:00
|
|
|
out << cmakeOutString << "\n";
|
2004-01-07 19:24:22 +03:00
|
|
|
if(m_BuildMakeProgram.size() == 0)
|
|
|
|
{
|
2004-01-09 22:05:55 +03:00
|
|
|
out << "Error: cmake does not have a valid MAKEPROGRAM\n";
|
|
|
|
out << "Did you specify a --build-makeprogram and a --build-generator?\n";
|
|
|
|
if(outstring)
|
|
|
|
{
|
|
|
|
*outstring = out.str();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr << out << "\n";
|
|
|
|
}
|
|
|
|
return 1;
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
|
|
|
int retVal = 0;
|
|
|
|
std::string makeCommand = cmSystemTools::ConvertToOutputPath(m_BuildMakeProgram.c_str());
|
|
|
|
std::string lowerCaseCommand = cmSystemTools::LowerCase(makeCommand);
|
|
|
|
// if msdev is the make program then do the following
|
|
|
|
// MSDEV 6.0
|
|
|
|
if(lowerCaseCommand.find("msdev") != std::string::npos)
|
|
|
|
{
|
|
|
|
// if there are spaces in the makeCommand, assume a full path
|
|
|
|
// and convert it to a path with no spaces in it as the
|
|
|
|
// RunSingleCommand does not like spaces
|
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
if(makeCommand.find(' ') != std::string::npos)
|
|
|
|
{
|
|
|
|
cmSystemTools::GetShortPath(makeCommand.c_str(), makeCommand);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
makeCommand += " ";
|
|
|
|
makeCommand += m_BuildProject;
|
|
|
|
makeCommand += ".dsw /MAKE \"ALL_BUILD - ";
|
|
|
|
makeCommand += m_ConfigType;
|
|
|
|
if(m_BuildNoClean)
|
|
|
|
{
|
|
|
|
makeCommand += "\" /BUILD";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
makeCommand += "\" /REBUILD";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// MSDEV 7.0 .NET
|
|
|
|
else if (lowerCaseCommand.find("devenv") != std::string::npos)
|
|
|
|
{
|
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
if(makeCommand.find(' ') != std::string::npos)
|
|
|
|
{
|
|
|
|
cmSystemTools::GetShortPath(makeCommand.c_str(), makeCommand);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
makeCommand += " ";
|
|
|
|
makeCommand += m_BuildProject;
|
|
|
|
makeCommand += ".sln ";
|
|
|
|
if(m_BuildNoClean)
|
|
|
|
{
|
|
|
|
makeCommand += "/build ";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
makeCommand += "/rebuild ";
|
|
|
|
}
|
|
|
|
makeCommand += m_ConfigType + " /project ALL_BUILD";
|
|
|
|
}
|
|
|
|
else if (lowerCaseCommand.find("make") != std::string::npos)
|
|
|
|
{
|
|
|
|
// assume a make sytle program
|
|
|
|
// clean first
|
|
|
|
if(!m_BuildNoClean)
|
|
|
|
{
|
|
|
|
std::string cleanCommand = makeCommand;
|
|
|
|
cleanCommand += " clean";
|
|
|
|
out << "Running make clean command: " << cleanCommand.c_str() << " ...\n";
|
|
|
|
retVal = 0;
|
|
|
|
std::string output;
|
|
|
|
if (!cmSystemTools::RunSingleCommand(cleanCommand.c_str(), &output, &retVal) ||
|
2004-01-26 21:57:26 +03:00
|
|
|
retVal)
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
|
|
|
out << "Error: " << cleanCommand.c_str() << " execution failed\n";
|
|
|
|
out << output.c_str() << "\n";
|
|
|
|
// return to the original directory
|
|
|
|
cmSystemTools::ChangeDirectory(cwd.c_str());
|
|
|
|
out << "Return value: " << retVal << std::endl;
|
|
|
|
if(outstring)
|
|
|
|
{
|
|
|
|
*outstring = out.str();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr << out << "\n";
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2004-01-09 22:05:55 +03:00
|
|
|
out << output;
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
if(m_BuildTarget.size())
|
|
|
|
{
|
|
|
|
makeCommand += " ";
|
|
|
|
makeCommand += m_BuildTarget;
|
|
|
|
}
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
// command line make program
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-09 22:14:24 +03:00
|
|
|
out << "Running make command: " << makeCommand.c_str() << "\n";
|
2004-01-07 19:24:22 +03:00
|
|
|
retVal = 0;
|
|
|
|
std::string output;
|
2004-01-29 18:29:01 +03:00
|
|
|
if (!cmSystemTools::RunSingleCommand(makeCommand.c_str(), &output, &retVal, 0, false))
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
|
|
|
out << "Error: " << makeCommand.c_str() << " execution failed\n";
|
|
|
|
out << output.c_str() << "\n";
|
|
|
|
// return to the original directory
|
|
|
|
cmSystemTools::ChangeDirectory(cwd.c_str());
|
|
|
|
out << "Return value: " << retVal << std::endl;
|
|
|
|
if(outstring)
|
|
|
|
{
|
|
|
|
*outstring = out.str();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr << out << "\n";
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if ( retVal )
|
|
|
|
{
|
|
|
|
if(outstring)
|
|
|
|
{
|
2004-01-09 22:05:55 +03:00
|
|
|
*outstring = out.str();
|
2004-01-09 20:35:33 +03:00
|
|
|
*outstring += "Building of project failed\n";
|
2004-01-07 19:24:22 +03:00
|
|
|
*outstring += output;
|
|
|
|
*outstring += "\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-01-09 20:35:33 +03:00
|
|
|
std::cerr << "Building of project failed\n";
|
2004-01-09 22:05:55 +03:00
|
|
|
std::cerr << out << output << "\n";
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
|
|
|
// return to the original directory
|
|
|
|
cmSystemTools::ChangeDirectory(cwd.c_str());
|
2004-01-09 16:54:41 +03:00
|
|
|
return 1;
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
2004-01-09 22:05:55 +03:00
|
|
|
out << output;
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-09 21:35:18 +03:00
|
|
|
if(m_TestCommand.size() == 0)
|
|
|
|
{
|
2004-01-09 22:05:55 +03:00
|
|
|
if(outstring)
|
|
|
|
{
|
|
|
|
*outstring = out.str();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cout << out << "\n";
|
|
|
|
}
|
2004-01-09 21:35:18 +03:00
|
|
|
return retVal;
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
|
|
|
// now run the compiled test if we can find it
|
2004-01-07 19:24:22 +03:00
|
|
|
// See if the executable exists as written.
|
|
|
|
std::vector<std::string> failed;
|
|
|
|
std::string fullPath;
|
2004-01-21 17:25:05 +03:00
|
|
|
if(cmSystemTools::FileExists(m_TestCommand.c_str())
|
|
|
|
&& !cmSystemTools::FileIsDirectory(m_TestCommand.c_str()))
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
|
|
|
fullPath = cmSystemTools::CollapseFullPath(m_TestCommand.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
failed.push_back(m_TestCommand);
|
2004-01-12 21:30:57 +03:00
|
|
|
std::string tryPath = m_TestCommand;
|
|
|
|
tryPath += cmSystemTools::GetExecutableExtension();
|
2004-01-21 17:25:05 +03:00
|
|
|
if(cmSystemTools::FileExists(tryPath.c_str())
|
2004-01-26 21:57:26 +03:00
|
|
|
&& !cmSystemTools::FileIsDirectory(tryPath.c_str()))
|
2004-01-12 21:30:57 +03:00
|
|
|
{
|
|
|
|
fullPath = cmSystemTools::CollapseFullPath(tryPath.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
failed.push_back(tryPath);
|
|
|
|
// try the Debug extension
|
|
|
|
tryPath = m_ConfigType + "/";
|
|
|
|
tryPath += cmSystemTools::GetFilenameName(m_TestCommand);
|
2004-01-21 17:25:05 +03:00
|
|
|
if(cmSystemTools::FileExists(tryPath.c_str())
|
2004-01-26 21:57:26 +03:00
|
|
|
&& !cmSystemTools::FileIsDirectory(tryPath.c_str()))
|
2004-01-12 21:30:57 +03:00
|
|
|
{
|
|
|
|
fullPath = cmSystemTools::CollapseFullPath(tryPath.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
failed.push_back(tryPath);
|
|
|
|
tryPath += cmSystemTools::GetExecutableExtension();
|
2004-01-21 17:25:05 +03:00
|
|
|
if(cmSystemTools::FileExists(tryPath.c_str())
|
2004-01-26 21:57:26 +03:00
|
|
|
&& !cmSystemTools::FileIsDirectory(tryPath.c_str()))
|
2004-01-12 21:30:57 +03:00
|
|
|
{
|
|
|
|
fullPath = cmSystemTools::CollapseFullPath(tryPath.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
failed.push_back(tryPath);
|
|
|
|
tryPath = m_ExecutableDirectory;
|
|
|
|
tryPath += "/";
|
|
|
|
tryPath += m_TestCommand;
|
|
|
|
tryPath += cmSystemTools::GetExecutableExtension();
|
2004-01-21 17:25:05 +03:00
|
|
|
if(cmSystemTools::FileExists(tryPath.c_str())
|
2004-01-26 21:57:26 +03:00
|
|
|
&& !cmSystemTools::FileIsDirectory(tryPath.c_str()))
|
2004-01-12 21:30:57 +03:00
|
|
|
{
|
|
|
|
fullPath = cmSystemTools::CollapseFullPath(tryPath.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
failed.push_back(tryPath);
|
|
|
|
tryPath = m_ExecutableDirectory;
|
|
|
|
tryPath += "/";
|
|
|
|
tryPath += m_ConfigType + "/";
|
|
|
|
tryPath += m_TestCommand;
|
|
|
|
tryPath += cmSystemTools::GetExecutableExtension();
|
2004-01-21 17:25:05 +03:00
|
|
|
if(cmSystemTools::FileExists(tryPath.c_str())
|
2004-01-26 21:57:26 +03:00
|
|
|
&& !cmSystemTools::FileIsDirectory(tryPath.c_str()))
|
2004-01-12 21:30:57 +03:00
|
|
|
{
|
|
|
|
fullPath = cmSystemTools::CollapseFullPath(tryPath.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
failed.push_back(tryPath);
|
2004-02-08 21:23:48 +03:00
|
|
|
std::string filepath = cmSystemTools::GetFilenamePath(m_TestCommand);
|
|
|
|
std::string filename = cmSystemTools::GetFilenameName(m_TestCommand);
|
2004-02-10 23:53:09 +03:00
|
|
|
tryPath = filepath + "/" + m_ConfigType + "/" + filename;
|
2004-02-08 21:23:48 +03:00
|
|
|
if ( cmSystemTools::FileExists(tryPath.c_str()) &&
|
|
|
|
!cmSystemTools::FileIsDirectory(tryPath.c_str()) )
|
|
|
|
{
|
|
|
|
fullPath = cmSystemTools::CollapseFullPath(tryPath.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
failed.push_back(tryPath);
|
|
|
|
}
|
2004-01-12 21:30:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
|
|
|
if(!cmSystemTools::FileExists(fullPath.c_str()))
|
|
|
|
{
|
|
|
|
out << "Could not find path to executable, perhaps it was not built: " <<
|
|
|
|
m_TestCommand << "\n";
|
|
|
|
out << "tried to find it in these places:\n";
|
|
|
|
for(unsigned int i=0; i < failed.size(); ++i)
|
|
|
|
{
|
|
|
|
out << failed[i] << "\n";
|
|
|
|
}
|
|
|
|
if(outstring)
|
|
|
|
{
|
2004-01-09 22:05:55 +03:00
|
|
|
*outstring = out.str();
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr << out.str();
|
|
|
|
}
|
|
|
|
// return to the original directory
|
|
|
|
cmSystemTools::ChangeDirectory(cwd.c_str());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<const char*> testCommand;
|
|
|
|
testCommand.push_back(fullPath.c_str());
|
2004-01-08 16:22:09 +03:00
|
|
|
for(k=0; k < m_TestCommandArgs.size(); ++k)
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
|
|
|
testCommand.push_back(m_TestCommandArgs[k].c_str());
|
|
|
|
}
|
|
|
|
testCommand.push_back(0);
|
|
|
|
std::string outs;
|
|
|
|
int retval = 0;
|
2004-01-09 21:35:18 +03:00
|
|
|
// run the test from the m_BuildRunDir if set
|
|
|
|
if(m_BuildRunDir.size())
|
|
|
|
{
|
2004-01-09 22:14:24 +03:00
|
|
|
out << "Run test in directory: " << m_BuildRunDir << "\n";
|
2004-01-09 21:35:18 +03:00
|
|
|
cmSystemTools::ChangeDirectory(m_BuildRunDir.c_str());
|
|
|
|
}
|
2004-01-09 22:14:24 +03:00
|
|
|
out << "Running test executable: " << fullPath << " ";
|
|
|
|
for(k=0; k < m_TestCommandArgs.size(); ++k)
|
|
|
|
{
|
|
|
|
out << m_TestCommandArgs[k] << " ";
|
|
|
|
}
|
|
|
|
out << "\n";
|
2004-02-10 23:51:29 +03:00
|
|
|
int runTestRes = this->RunTest(testCommand, &outs, &retval, 0);
|
2004-01-21 17:25:05 +03:00
|
|
|
if(runTestRes != cmsysProcess_State_Exited || retval != 0)
|
|
|
|
{
|
|
|
|
out << "Test failed to run.\n";
|
|
|
|
retval = 1;
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
out << outs << "\n";
|
|
|
|
if(outstring)
|
|
|
|
{
|
2004-01-09 22:05:55 +03:00
|
|
|
*outstring = out.str();
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cout << out.str() << "\n";
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2004-01-07 03:13:55 +03:00
|
|
|
void cmCTest::SetNotesFiles(const char* notes)
|
|
|
|
{
|
|
|
|
if ( !notes )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_NotesFiles = notes;
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
|
|
|
int cmCTest::ReadCustomConfigurationFileTree(const char* dir)
|
|
|
|
{
|
|
|
|
tm_VectorOfStrings dirs;
|
|
|
|
tm_VectorOfStrings ndirs;
|
|
|
|
dirs.push_back(dir);
|
|
|
|
cmake cm;
|
|
|
|
cmGlobalGenerator gg;
|
|
|
|
gg.SetCMakeInstance(&cm);
|
|
|
|
cmLocalGenerator *lg = gg.CreateLocalGenerator();
|
|
|
|
lg->SetGlobalGenerator(&gg);
|
|
|
|
cmMakefile *mf = lg->GetMakefile();
|
|
|
|
|
|
|
|
while ( dirs.size() > 0 )
|
|
|
|
{
|
|
|
|
tm_VectorOfStrings::iterator cdir = dirs.end()-1;
|
|
|
|
std::string rexpr = *cdir + "/*";
|
|
|
|
std::string fname = *cdir + "/CTestCustom.ctest";
|
|
|
|
if ( cmSystemTools::FileExists(fname.c_str()) &&
|
|
|
|
(!lg->GetMakefile()->ReadListFile(0, fname.c_str()) ||
|
|
|
|
cmSystemTools::GetErrorOccuredFlag() ) )
|
|
|
|
{
|
|
|
|
std::cerr << "Problem reading custom configuration" << std::endl;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
dirs.erase(dirs.end()-1, dirs.end());
|
|
|
|
cmSystemTools::SimpleGlob(rexpr, ndirs, -1);
|
|
|
|
dirs.insert(dirs.end(), ndirs.begin(), ndirs.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
this->PopulateCustomVector(mf, "CTEST_CUSTOM_ERROR_MATCH", m_CustomErrorMatches);
|
|
|
|
this->PopulateCustomVector(mf, "CTEST_CUSTOM_ERROR_EXCEPTION", m_CustomErrorExceptions);
|
|
|
|
this->PopulateCustomVector(mf, "CTEST_CUSTOM_WARNING_MATCH", m_CustomWarningMatches);
|
|
|
|
this->PopulateCustomVector(mf, "CTEST_CUSTOM_WARNING_EXCEPTION", m_CustomWarningExceptions);
|
|
|
|
|
|
|
|
this->PopulateCustomVector(mf, "CTEST_CUSTOM_TESTS_IGNORE", m_CustomTestsIgnore);
|
|
|
|
this->PopulateCustomVector(mf, "CTEST_CUSTOM_MEMCHECK_IGNORE", m_CustomMemCheckIgnore);
|
|
|
|
|
|
|
|
this->PopulateCustomVector(mf, "CTEST_CUSTOM_PRE_TEST", m_CustomPreTest);
|
|
|
|
this->PopulateCustomVector(mf, "CTEST_CUSTOM_POST_TEST", m_CustomPostTest);
|
|
|
|
this->PopulateCustomVector(mf, "CTEST_CUSTOM_PRE_MEMCHECK", m_CustomPreMemCheck);
|
|
|
|
this->PopulateCustomVector(mf, "CTEST_CUSTOM_POST_MEMCHECK", m_CustomPostMemCheck);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCTest::PopulateCustomVector(cmMakefile* mf, const char* def, tm_VectorOfStrings& vec)
|
|
|
|
{
|
|
|
|
if ( !def)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const char* dval = mf->GetDefinition(def);
|
|
|
|
if ( !dval )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::vector<std::string> slist;
|
|
|
|
cmSystemTools::ExpandListArgument(dval, slist);
|
2004-01-26 22:41:29 +03:00
|
|
|
std::vector<std::string>::iterator it;
|
|
|
|
|
|
|
|
for ( it = slist.begin(); it != slist.end(); ++it )
|
|
|
|
{
|
|
|
|
vec.push_back(it->c_str());
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int cmCTest::ExecuteCommands(tm_VectorOfStrings& vec)
|
|
|
|
{
|
|
|
|
tm_VectorOfStrings::iterator it;
|
|
|
|
for ( it = vec.begin(); it != vec.end(); ++it )
|
|
|
|
{
|
|
|
|
int retVal = 0;
|
|
|
|
if ( m_Verbose )
|
|
|
|
{
|
|
|
|
std::cout << "Run command: " << *it << std::endl;
|
|
|
|
}
|
|
|
|
if ( !cmSystemTools::RunSingleCommand(it->c_str(), 0, &retVal, 0, true /*m_Verbose*/) ||
|
|
|
|
retVal != 0 )
|
|
|
|
{
|
|
|
|
std::cerr << "Problem running command: " << *it << std::endl;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|