2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2015-01-22 18:15:31 +03:00
|
|
|
#include "cmCurl.h" // include before anything that includes windows.h
|
2004-10-05 18:00:36 +04:00
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
#include "cmCTest.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2005-06-16 21:18:21 +04:00
|
|
|
#include "cmCTestCommand.h"
|
2009-11-24 16:58:59 +03:00
|
|
|
#include "cmCTestStartCommand.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmDynamicLoader.h"
|
|
|
|
#include "cmGeneratedFileStream.h"
|
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
#include "cmMakefile.h"
|
2015-04-11 15:15:55 +03:00
|
|
|
#include "cmState.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmVersionMacros.h"
|
2015-05-24 01:00:16 +03:00
|
|
|
#include "cmXMLWriter.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmake.h"
|
|
|
|
#include <cmsys/Base64.h>
|
|
|
|
#include <cmsys/Directory.hxx>
|
|
|
|
#include <cmsys/FStream.hxx>
|
|
|
|
#include <cmsys/SystemInformation.hxx>
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2005-06-04 00:10:55 +04:00
|
|
|
#include "cmCTestBuildAndTestHandler.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmCTestBuildHandler.h"
|
2005-01-27 23:54:47 +03:00
|
|
|
#include "cmCTestConfigureHandler.h"
|
2004-09-09 16:41:05 +04:00
|
|
|
#include "cmCTestCoverageHandler.h"
|
2005-01-27 23:54:47 +03:00
|
|
|
#include "cmCTestMemCheckHandler.h"
|
2004-09-07 18:46:12 +04:00
|
|
|
#include "cmCTestScriptHandler.h"
|
2011-02-18 20:11:51 +03:00
|
|
|
#include "cmCTestSubmitHandler.h"
|
2004-09-09 16:41:05 +04:00
|
|
|
#include "cmCTestTestHandler.h"
|
2004-09-07 18:46:12 +04:00
|
|
|
#include "cmCTestUpdateHandler.h"
|
2011-02-18 20:11:51 +03:00
|
|
|
#include "cmCTestUploadHandler.h"
|
2004-09-07 17:17:15 +04:00
|
|
|
|
2004-10-22 23:44:54 +04:00
|
|
|
#include "cmVersion.h"
|
2003-01-07 07:13:15 +03:00
|
|
|
|
2006-03-21 20:54:31 +03:00
|
|
|
#include <cmsys/Glob.hxx>
|
2016-04-29 17:53:13 +03:00
|
|
|
#include <cmsys/Process.h>
|
|
|
|
#include <cmsys/RegularExpression.hxx>
|
2003-08-08 03:23:49 +04:00
|
|
|
|
2009-02-24 23:43:06 +03:00
|
|
|
#include <ctype.h>
|
2016-04-29 17:53:13 +03:00
|
|
|
#include <float.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdlib.h>
|
2004-05-05 18:13:19 +04:00
|
|
|
|
2016-06-28 17:17:52 +03:00
|
|
|
#include <cm_auto_ptr.hxx>
|
2003-04-08 18:57:30 +04:00
|
|
|
|
2011-05-26 22:42:41 +04:00
|
|
|
#include <cm_zlib.h>
|
|
|
|
#include <cmsys/Base64.h>
|
|
|
|
|
2013-10-05 18:59:25 +04:00
|
|
|
#if defined(__BEOS__) || defined(__HAIKU__)
|
2016-05-16 17:34:04 +03:00
|
|
|
#include <be/kernel/OS.h> /* disable_debugger() API. */
|
2006-12-05 01:26:41 +03:00
|
|
|
#endif
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
#define DEBUGOUT \
|
|
|
|
std::cout << __LINE__ << " "; \
|
|
|
|
std::cout
|
|
|
|
#define DEBUGERR \
|
|
|
|
std::cerr << __LINE__ << " "; \
|
|
|
|
std::cerr
|
2008-09-16 01:53:28 +04:00
|
|
|
|
2016-05-26 22:58:51 +03:00
|
|
|
struct tm* cmCTest::GetNightlyTime(std::string const& str, bool tomorrowtag)
|
2003-02-28 20:42:50 +03:00
|
|
|
{
|
|
|
|
struct tm* lctime;
|
2016-06-27 23:44:16 +03:00
|
|
|
time_t tctime = time(CM_NULLPTR);
|
2007-03-23 23:33:47 +03:00
|
|
|
lctime = gmtime(&tctime);
|
|
|
|
char buf[1024];
|
|
|
|
// add todays year day and month to the time in str because
|
|
|
|
// curl_getdate no longer assumes the day is today
|
2016-05-16 17:34:04 +03:00
|
|
|
sprintf(buf, "%d%02d%02d %s", lctime->tm_year + 1900, lctime->tm_mon + 1,
|
|
|
|
lctime->tm_mday, str.c_str());
|
|
|
|
cmCTestLog(this, OUTPUT, "Determine Nightly Start Time"
|
|
|
|
<< std::endl
|
|
|
|
<< " Specified time: " << str << std::endl);
|
|
|
|
// 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.
|
2007-03-23 23:33:47 +03:00
|
|
|
time_t ntime = curl_getdate(buf, &tctime);
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, DEBUG, " Get curl time: " << ntime << std::endl);
|
2016-06-27 23:44:16 +03:00
|
|
|
tctime = time(CM_NULLPTR);
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, DEBUG, " Get the current time: " << tctime << std::endl);
|
2004-08-17 22:23:25 +04:00
|
|
|
|
|
|
|
const int dayLength = 24 * 60 * 60;
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, DEBUG, "Seconds: " << tctime << std::endl);
|
2016-05-16 17:34:04 +03:00
|
|
|
while (ntime > tctime) {
|
2003-02-28 20:42:50 +03:00
|
|
|
// 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
|
2004-08-17 22:23:25 +04:00
|
|
|
ntime -= dayLength;
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, DEBUG, "Pick yesterday" << std::endl);
|
2006-03-09 19:57:43 +03:00
|
|
|
cmCTestLog(this, DEBUG, " Future time, subtract day: " << ntime
|
2016-05-16 17:34:04 +03:00
|
|
|
<< std::endl);
|
|
|
|
}
|
|
|
|
while (tctime > (ntime + dayLength)) {
|
2004-08-17 22:23:25 +04:00
|
|
|
ntime += dayLength;
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, DEBUG, " Past time, add day: " << ntime << std::endl);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, DEBUG, "nightlySeconds: " << ntime << std::endl);
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestLog(this, DEBUG, " Current time: " << tctime << " Nightly time: "
|
|
|
|
<< ntime << std::endl);
|
|
|
|
if (tomorrowtag) {
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, OUTPUT, " Use future tag, Add a day" << std::endl);
|
2004-08-17 22:23:25 +04:00
|
|
|
ntime += dayLength;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2003-02-28 20:42:50 +03:00
|
|
|
lctime = gmtime(&ntime);
|
|
|
|
return lctime;
|
|
|
|
}
|
|
|
|
|
2004-09-09 16:41:05 +04:00
|
|
|
std::string cmCTest::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");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (spos == str.npos) {
|
2002-12-17 05:19:21 +03:00
|
|
|
return std::string();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (epos != str.npos) {
|
2002-12-17 05:19:21 +03:00
|
|
|
epos = epos - spos + 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
return str.substr(spos, epos);
|
|
|
|
}
|
|
|
|
|
2004-07-21 00:18:22 +04:00
|
|
|
std::string cmCTest::CurrentTime()
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2016-06-27 23:44:16 +03:00
|
|
|
time_t currenttime = time(CM_NULLPTR);
|
2003-01-12 05:47:12 +03:00
|
|
|
struct tm* t = localtime(¤ttime);
|
2016-05-16 17:34:04 +03:00
|
|
|
// return ::CleanString(ctime(¤ttime));
|
2003-01-12 05:47:12 +03:00
|
|
|
char current_time[1024];
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->ShortDateFormat) {
|
2004-08-26 17:45:20 +04:00
|
|
|
strftime(current_time, 1000, "%b %d %H:%M %Z", t);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2004-08-26 17:45:20 +04:00
|
|
|
strftime(current_time, 1000, "%a %b %d %H:%M:%S %Z %Y", t);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, DEBUG, " Current_Time: " << current_time << std::endl);
|
2015-07-16 22:48:00 +03:00
|
|
|
return cmCTest::CleanString(current_time);
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
2010-03-01 19:00:23 +03:00
|
|
|
std::string cmCTest::GetCostDataFile()
|
|
|
|
{
|
|
|
|
std::string fname = this->GetCTestConfiguration("CostDataFile");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (fname == "") {
|
|
|
|
fname = this->GetBinaryDir() + "/Testing/Temporary/CTestCostData.txt";
|
|
|
|
}
|
2010-03-01 19:00:23 +03:00
|
|
|
return fname;
|
|
|
|
}
|
|
|
|
|
2009-12-22 22:37:06 +03:00
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
2016-05-16 17:34:04 +03:00
|
|
|
static size_t HTTPResponseCallback(void* ptr, size_t size, size_t nmemb,
|
|
|
|
void* data)
|
2009-12-22 22:37:06 +03:00
|
|
|
{
|
2013-06-28 20:26:44 +04:00
|
|
|
int realsize = (int)(size * nmemb);
|
2009-12-22 22:37:06 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string* response = static_cast<std::string*>(data);
|
2009-12-22 22:37:06 +03:00
|
|
|
const char* chPtr = static_cast<char*>(ptr);
|
|
|
|
*response += chPtr;
|
|
|
|
|
|
|
|
return realsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cmCTest::HTTPRequest(std::string url, HTTPMethod method,
|
2016-05-26 22:58:51 +03:00
|
|
|
std::string& response, std::string const& fields,
|
|
|
|
std::string const& putFile, int timeout)
|
2009-12-22 22:37:06 +03:00
|
|
|
{
|
|
|
|
CURL* curl;
|
2009-12-30 19:10:42 +03:00
|
|
|
FILE* file;
|
2009-12-22 22:37:06 +03:00
|
|
|
::curl_global_init(CURL_GLOBAL_ALL);
|
|
|
|
curl = ::curl_easy_init();
|
2015-01-22 18:15:31 +03:00
|
|
|
cmCurlSetCAInfo(curl);
|
2009-12-22 22:37:06 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
// set request options based on method
|
|
|
|
switch (method) {
|
2009-12-30 19:10:42 +03:00
|
|
|
case cmCTest::HTTP_POST:
|
|
|
|
::curl_easy_setopt(curl, CURLOPT_POST, 1);
|
|
|
|
::curl_easy_setopt(curl, CURLOPT_POSTFIELDS, fields.c_str());
|
|
|
|
break;
|
|
|
|
case cmCTest::HTTP_PUT:
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::FileExists(putFile.c_str())) {
|
2009-12-30 19:10:42 +03:00
|
|
|
response = "Error: File ";
|
|
|
|
response += putFile + " does not exist.\n";
|
|
|
|
return -1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-30 19:10:42 +03:00
|
|
|
::curl_easy_setopt(curl, CURLOPT_PUT, 1);
|
2014-10-15 16:54:05 +04:00
|
|
|
file = cmsys::SystemTools::Fopen(putFile, "rb");
|
2009-12-30 19:10:42 +03:00
|
|
|
::curl_easy_setopt(curl, CURLOPT_INFILE, file);
|
2016-05-16 17:34:04 +03:00
|
|
|
// fall through to append GET fields
|
2009-12-30 19:10:42 +03:00
|
|
|
case cmCTest::HTTP_GET:
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!fields.empty()) {
|
2009-12-30 19:10:42 +03:00
|
|
|
url += "?" + fields;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-30 19:10:42 +03:00
|
|
|
break;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2009-12-22 22:37:06 +03:00
|
|
|
::curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
|
|
|
|
::curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
|
|
|
|
::curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
// set response options
|
2009-12-22 22:37:06 +03:00
|
|
|
::curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, HTTPResponseCallback);
|
2016-05-16 17:34:04 +03:00
|
|
|
::curl_easy_setopt(curl, CURLOPT_FILE, (void*)&response);
|
2009-12-22 22:37:06 +03:00
|
|
|
::curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
|
|
|
|
|
|
|
|
CURLcode res = ::curl_easy_perform(curl);
|
|
|
|
|
|
|
|
::curl_easy_cleanup(curl);
|
|
|
|
::curl_global_cleanup();
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2009-12-22 22:37:06 +03:00
|
|
|
return static_cast<int>(res);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-04-02 18:19:45 +04:00
|
|
|
std::string cmCTest::MakeURLSafe(const std::string& str)
|
|
|
|
{
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream ost;
|
2003-04-02 18:19:45 +04:00
|
|
|
char buffer[10];
|
2016-05-16 17:34:04 +03: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];
|
2016-05-16 17:34:04 +03:00
|
|
|
if ((ch > 126 || ch < 32 || ch == '&' || ch == '%' || ch == '+' ||
|
|
|
|
ch == '=' || ch == '@') &&
|
|
|
|
ch != 9) {
|
2003-04-02 18:19:45 +04:00
|
|
|
sprintf(buffer, "%02x;", (unsigned int)ch);
|
|
|
|
ost << buffer;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2003-04-02 18:19:45 +04:00
|
|
|
ost << ch;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2003-04-02 18:19:45 +04:00
|
|
|
return ost.str();
|
|
|
|
}
|
|
|
|
|
2009-02-24 23:43:06 +03:00
|
|
|
std::string cmCTest::DecodeURL(const std::string& in)
|
|
|
|
{
|
|
|
|
std::string out;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (const char* c = in.c_str(); *c; ++c) {
|
|
|
|
if (*c == '%' && isxdigit(*(c + 1)) && isxdigit(*(c + 2))) {
|
|
|
|
char buf[3] = { *(c + 1), *(c + 2), 0 };
|
2016-06-27 23:44:16 +03:00
|
|
|
out.append(1, char(strtoul(buf, CM_NULLPTR, 16)));
|
2009-02-24 23:43:06 +03:00
|
|
|
c += 2;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2009-02-24 23:43:06 +03:00
|
|
|
out.append(1, *c);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-02-24 23:43:06 +03:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2006-03-09 19:57:43 +03:00
|
|
|
cmCTest::cmCTest()
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
this->LabelSummary = true;
|
|
|
|
this->ParallelLevel = 1;
|
|
|
|
this->ParallelLevelSetInCli = false;
|
|
|
|
this->TestLoad = 0;
|
|
|
|
this->SubmitIndex = 0;
|
|
|
|
this->Failover = false;
|
|
|
|
this->BatchJobs = false;
|
|
|
|
this->ForceNewCTestProcess = false;
|
|
|
|
this->TomorrowTag = false;
|
|
|
|
this->Verbose = false;
|
|
|
|
|
|
|
|
this->Debug = false;
|
|
|
|
this->ShowLineNumbers = false;
|
|
|
|
this->Quiet = false;
|
|
|
|
this->ExtraVerbose = false;
|
|
|
|
this->ProduceXML = false;
|
|
|
|
this->ShowOnly = false;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->RunConfigurationScript = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->UseHTTP10 = false;
|
|
|
|
this->PrintLabels = false;
|
|
|
|
this->CompressTestOutput = true;
|
2011-05-26 22:42:41 +04:00
|
|
|
this->CompressMemCheckOutput = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->TestModel = cmCTest::EXPERIMENTAL;
|
|
|
|
this->MaxTestNameWidth = 30;
|
|
|
|
this->InteractiveDebugMode = true;
|
|
|
|
this->TimeOut = 0;
|
|
|
|
this->GlobalTimeout = 0;
|
|
|
|
this->LastStopTimeout = 24 * 60 * 60;
|
|
|
|
this->CompressXMLFiles = false;
|
|
|
|
this->CTestConfigFile = "";
|
|
|
|
this->ScheduleType = "";
|
|
|
|
this->StopTime = "";
|
|
|
|
this->NextDayStopTime = false;
|
2016-06-27 23:44:16 +03:00
|
|
|
this->OutputLogFile = CM_NULLPTR;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->OutputLogFileLastTag = -1;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->SuppressUpdatingCTestConfiguration = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->DartVersion = 1;
|
|
|
|
this->DropSiteCDash = false;
|
2009-01-18 21:03:32 +03:00
|
|
|
this->OutputTestOutputOnTestFailure = false;
|
2011-05-26 22:42:41 +04:00
|
|
|
this->ComputedCompressTestOutput = false;
|
|
|
|
this->ComputedCompressMemCheckOutput = false;
|
2015-03-06 00:51:10 +03:00
|
|
|
this->RepeatTests = 1; // default to run each test once
|
|
|
|
this->RepeatUntilFail = false;
|
2016-07-08 00:54:05 +03:00
|
|
|
std::string outOnFail;
|
|
|
|
if (cmSystemTools::GetEnv("CTEST_OUTPUT_ON_FAILURE", outOnFail)) {
|
|
|
|
this->OutputTestOutputOnTestFailure =
|
|
|
|
!cmSystemTools::IsOff(outOnFail.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-01-05 22:14:10 +03:00
|
|
|
this->InitStreams();
|
2005-06-03 00:47:47 +04:00
|
|
|
|
2009-01-12 18:37:25 +03:00
|
|
|
this->Parts[PartStart].SetName("Start");
|
|
|
|
this->Parts[PartUpdate].SetName("Update");
|
|
|
|
this->Parts[PartConfigure].SetName("Configure");
|
|
|
|
this->Parts[PartBuild].SetName("Build");
|
|
|
|
this->Parts[PartTest].SetName("Test");
|
|
|
|
this->Parts[PartCoverage].SetName("Coverage");
|
|
|
|
this->Parts[PartMemCheck].SetName("MemCheck");
|
|
|
|
this->Parts[PartSubmit].SetName("Submit");
|
|
|
|
this->Parts[PartNotes].SetName("Notes");
|
2009-01-12 18:37:55 +03:00
|
|
|
this->Parts[PartExtraFiles].SetName("ExtraFiles");
|
2011-02-18 20:11:51 +03:00
|
|
|
this->Parts[PartUpload].SetName("Upload");
|
2009-01-12 18:37:25 +03:00
|
|
|
|
|
|
|
// Fill the part name-to-id map.
|
2016-05-16 17:34:04 +03:00
|
|
|
for (Part p = PartStart; p != PartCount; p = Part(p + 1)) {
|
2009-01-12 18:37:25 +03:00
|
|
|
this->PartMap[cmSystemTools::LowerCase(this->Parts[p].GetName())] = p;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-01-12 18:37:25 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
this->ShortDateFormat = true;
|
2004-09-06 20:46:35 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
this->TestingHandlers["build"] = new cmCTestBuildHandler;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->TestingHandlers["buildtest"] = new cmCTestBuildAndTestHandler;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->TestingHandlers["coverage"] = new cmCTestCoverageHandler;
|
|
|
|
this->TestingHandlers["script"] = new cmCTestScriptHandler;
|
|
|
|
this->TestingHandlers["test"] = new cmCTestTestHandler;
|
|
|
|
this->TestingHandlers["update"] = new cmCTestUpdateHandler;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->TestingHandlers["configure"] = new cmCTestConfigureHandler;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->TestingHandlers["memcheck"] = new cmCTestMemCheckHandler;
|
|
|
|
this->TestingHandlers["submit"] = new cmCTestSubmitHandler;
|
|
|
|
this->TestingHandlers["upload"] = new cmCTestUploadHandler;
|
2005-01-27 23:54:47 +03:00
|
|
|
|
|
|
|
cmCTest::t_TestingHandlers::iterator it;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (it = this->TestingHandlers.begin(); it != this->TestingHandlers.end();
|
|
|
|
++it) {
|
2005-01-27 23:54:47 +03:00
|
|
|
it->second->SetCTestInstance(this);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2010-02-08 17:47:39 +03:00
|
|
|
|
2006-02-15 18:22:55 +03:00
|
|
|
// Make sure we can capture the build tool output.
|
|
|
|
cmSystemTools::EnableVSConsoleOutput();
|
2004-09-06 20:46:35 +04:00
|
|
|
}
|
|
|
|
|
2006-03-09 19:57:43 +03:00
|
|
|
cmCTest::~cmCTest()
|
|
|
|
{
|
2015-01-04 15:33:16 +03:00
|
|
|
cmDeleteAll(this->TestingHandlers);
|
2016-06-27 23:44:16 +03:00
|
|
|
this->SetOutputLogFileName(CM_NULLPTR);
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
2009-08-26 20:09:06 +04:00
|
|
|
void cmCTest::SetParallelLevel(int level)
|
|
|
|
{
|
|
|
|
this->ParallelLevel = level < 1 ? 1 : level;
|
|
|
|
}
|
|
|
|
|
2015-06-09 15:50:44 +03:00
|
|
|
void cmCTest::SetTestLoad(unsigned long load)
|
|
|
|
{
|
|
|
|
this->TestLoad = load;
|
|
|
|
}
|
|
|
|
|
2009-12-21 20:27:04 +03:00
|
|
|
bool cmCTest::ShouldCompressTestOutput()
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->ComputedCompressTestOutput) {
|
2009-12-21 23:47:29 +03:00
|
|
|
std::string cdashVersion = this->GetCDashVersion();
|
2016-05-16 17:34:04 +03:00
|
|
|
// version >= 1.6?
|
|
|
|
bool cdashSupportsGzip =
|
|
|
|
cmSystemTools::VersionCompare(cmSystemTools::OP_GREATER,
|
|
|
|
cdashVersion.c_str(), "1.6") ||
|
2009-12-21 20:27:04 +03:00
|
|
|
cmSystemTools::VersionCompare(cmSystemTools::OP_EQUAL,
|
2016-05-16 17:34:04 +03:00
|
|
|
cdashVersion.c_str(), "1.6");
|
2009-12-21 20:27:04 +03:00
|
|
|
this->CompressTestOutput &= cdashSupportsGzip;
|
2011-05-26 22:42:41 +04:00
|
|
|
this->ComputedCompressTestOutput = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-21 20:27:04 +03:00
|
|
|
return this->CompressTestOutput;
|
|
|
|
}
|
|
|
|
|
2011-05-26 22:42:41 +04:00
|
|
|
bool cmCTest::ShouldCompressMemCheckOutput()
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->ComputedCompressMemCheckOutput) {
|
2011-05-26 22:42:41 +04:00
|
|
|
std::string cdashVersion = this->GetCDashVersion();
|
|
|
|
|
|
|
|
bool compressionSupported = cmSystemTools::VersionCompare(
|
|
|
|
cmSystemTools::OP_GREATER, cdashVersion.c_str(), "1.9.0");
|
|
|
|
this->CompressMemCheckOutput &= compressionSupported;
|
|
|
|
this->ComputedCompressMemCheckOutput = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-05-26 22:42:41 +04:00
|
|
|
return this->CompressMemCheckOutput;
|
|
|
|
}
|
|
|
|
|
2009-12-21 23:47:29 +03:00
|
|
|
std::string cmCTest::GetCDashVersion()
|
|
|
|
{
|
2009-12-22 00:42:32 +03:00
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
2016-05-16 17:34:04 +03:00
|
|
|
// First query the server. If that fails, fall back to the local setting
|
2009-12-21 23:47:29 +03:00
|
|
|
std::string response;
|
|
|
|
std::string url = "http://";
|
2010-08-18 17:58:27 +04:00
|
|
|
url += this->GetCTestConfiguration("DropSite");
|
|
|
|
|
|
|
|
std::string cdashUri = this->GetCTestConfiguration("DropLocation");
|
|
|
|
cdashUri = cdashUri.substr(0, cdashUri.find("/submit.php"));
|
|
|
|
|
2011-12-11 02:04:51 +04:00
|
|
|
int res = 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cdashUri.empty()) {
|
2011-12-11 02:04:51 +04:00
|
|
|
url += cdashUri + "/api/getversion.php";
|
|
|
|
res = cmCTest::HTTPRequest(url, cmCTest::HTTP_GET, response, "", "", 3);
|
|
|
|
}
|
2010-08-18 17:58:27 +04:00
|
|
|
|
2009-12-21 23:47:29 +03:00
|
|
|
return res ? this->GetCTestConfiguration("CDashVersion") : response;
|
2009-12-22 00:42:32 +03:00
|
|
|
#else
|
|
|
|
return this->GetCTestConfiguration("CDashVersion");
|
|
|
|
#endif
|
2009-12-21 23:47:29 +03:00
|
|
|
}
|
|
|
|
|
2009-01-12 18:37:25 +03:00
|
|
|
cmCTest::Part cmCTest::GetPartFromName(const char* name)
|
|
|
|
{
|
|
|
|
// Look up by lower-case to make names case-insensitive.
|
|
|
|
std::string lower_name = cmSystemTools::LowerCase(name);
|
|
|
|
PartMapType::const_iterator i = this->PartMap.find(lower_name);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (i != this->PartMap.end()) {
|
2009-01-12 18:37:25 +03:00
|
|
|
return i->second;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-01-12 18:37:25 +03:00
|
|
|
|
|
|
|
// The string does not name a valid part.
|
|
|
|
return PartCount;
|
|
|
|
}
|
|
|
|
|
2009-12-29 22:38:31 +03:00
|
|
|
int cmCTest::Initialize(const char* binary_dir, cmCTestStartCommand* command)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2015-02-17 17:58:25 +03:00
|
|
|
bool quiet = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (command && command->ShouldBeQuiet()) {
|
2015-02-17 17:58:25 +03:00
|
|
|
quiet = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-02-17 17:58:25 +03:00
|
|
|
|
|
|
|
cmCTestOptionalLog(this, DEBUG, "Here: " << __LINE__ << std::endl, quiet);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->InteractiveDebugMode) {
|
2004-05-07 20:53:35 +04:00
|
|
|
this->BlockTestErrorDiagnostics();
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2006-07-21 22:58:13 +04:00
|
|
|
cmSystemTools::PutEnv("CTEST_INTERACTIVE_DEBUG_MODE=1");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
this->BinaryDir = binary_dir;
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(this->BinaryDir);
|
2005-06-16 21:18:21 +04:00
|
|
|
|
|
|
|
this->UpdateCTestConfiguration();
|
|
|
|
|
2015-02-17 17:58:25 +03:00
|
|
|
cmCTestOptionalLog(this, DEBUG, "Here: " << __LINE__ << std::endl, quiet);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->ProduceXML) {
|
2015-02-17 17:58:25 +03:00
|
|
|
cmCTestOptionalLog(this, DEBUG, "Here: " << __LINE__ << std::endl, quiet);
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestOptionalLog(
|
|
|
|
this, OUTPUT, " Site: "
|
|
|
|
<< this->GetCTestConfiguration("Site") << std::endl
|
|
|
|
<< " Build name: "
|
|
|
|
<< cmCTest::SafeBuildIdField(this->GetCTestConfiguration("BuildName"))
|
|
|
|
<< std::endl,
|
|
|
|
quiet);
|
2015-02-17 17:58:25 +03:00
|
|
|
cmCTestOptionalLog(this, DEBUG, "Produce XML is on" << std::endl, quiet);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->TestModel == cmCTest::NIGHTLY &&
|
|
|
|
this->GetCTestConfiguration("NightlyStartTime").empty()) {
|
|
|
|
cmCTestOptionalLog(
|
|
|
|
this, WARNING,
|
2015-02-17 17:58:25 +03:00
|
|
|
"WARNING: No nightly start time found please set in CTestConfig.cmake"
|
2016-05-16 17:34:04 +03:00
|
|
|
" or DartConfig.cmake"
|
|
|
|
<< std::endl,
|
2015-02-17 17:58:25 +03:00
|
|
|
quiet);
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestOptionalLog(this, DEBUG, "Here: " << __LINE__ << std::endl,
|
|
|
|
quiet);
|
2005-06-16 21:18:21 +04:00
|
|
|
return 0;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-16 21:18:21 +04:00
|
|
|
|
2006-04-09 15:45:18 +04:00
|
|
|
cmake cm;
|
2015-05-05 00:01:29 +03:00
|
|
|
cm.SetHomeDirectory("");
|
|
|
|
cm.SetHomeOutputDirectory("");
|
2015-10-13 22:48:46 +03:00
|
|
|
cm.GetCurrentSnapshot().SetDefaultDefinitions();
|
2015-05-24 12:31:14 +03:00
|
|
|
cmGlobalGenerator gg(&cm);
|
2016-06-28 17:17:52 +03:00
|
|
|
CM_AUTO_PTR<cmMakefile> mf(new cmMakefile(&gg, cm.GetCurrentSnapshot()));
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->ReadCustomConfigurationFileTree(this->BinaryDir.c_str(),
|
|
|
|
mf.get())) {
|
|
|
|
cmCTestOptionalLog(
|
|
|
|
this, DEBUG, "Cannot find custom configuration file tree" << std::endl,
|
|
|
|
quiet);
|
2004-01-26 21:57:26 +03:00
|
|
|
return 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-16 21:18:21 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->ProduceXML) {
|
2009-12-29 22:38:31 +03:00
|
|
|
// Verify "Testing" directory exists:
|
|
|
|
//
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string testingDir = this->BinaryDir + "/Testing";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileExists(testingDir.c_str())) {
|
|
|
|
if (!cmSystemTools::FileIsDirectory(testingDir)) {
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "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
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
|
|
|
if (!cmSystemTools::MakeDirectory(testingDir.c_str())) {
|
2006-03-09 19:57:43 +03:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Cannot create directory "
|
2016-05-16 17:34:04 +03:00
|
|
|
<< testingDir << std::endl);
|
2004-01-26 21:57:26 +03:00
|
|
|
return 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-29 22:38:31 +03:00
|
|
|
|
|
|
|
// Create new "TAG" file or read existing one:
|
|
|
|
//
|
2009-12-29 23:48:14 +03:00
|
|
|
bool createNewTag = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (command) {
|
2009-12-29 23:48:14 +03:00
|
|
|
createNewTag = command->ShouldCreateNewTag();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-29 23:48:14 +03:00
|
|
|
|
2002-12-17 05:19:21 +03:00
|
|
|
std::string tagfile = testingDir + "/TAG";
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream tfin(tagfile.c_str());
|
2002-12-17 05:19:21 +03:00
|
|
|
std::string tag;
|
2009-12-29 22:38:31 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (createNewTag) {
|
2016-06-27 23:44:16 +03:00
|
|
|
time_t tctime = time(CM_NULLPTR);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->TomorrowTag) {
|
|
|
|
tctime += (24 * 60 * 60);
|
|
|
|
}
|
|
|
|
struct tm* lctime = gmtime(&tctime);
|
|
|
|
if (tfin && cmSystemTools::GetLineFromStream(tfin, tag)) {
|
2009-12-29 22:38:31 +03:00
|
|
|
int year = 0;
|
|
|
|
int mon = 0;
|
|
|
|
int day = 0;
|
|
|
|
int hour = 0;
|
|
|
|
int min = 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
sscanf(tag.c_str(), "%04d%02d%02d-%02d%02d", &year, &mon, &day, &hour,
|
|
|
|
&min);
|
|
|
|
if (year != lctime->tm_year + 1900 || mon != lctime->tm_mon + 1 ||
|
|
|
|
day != lctime->tm_mday) {
|
2009-12-29 22:38:31 +03:00
|
|
|
tag = "";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-29 22:38:31 +03:00
|
|
|
std::string tagmode;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::GetLineFromStream(tfin, tagmode)) {
|
|
|
|
if (tagmode.size() > 4 && !this->Parts[PartStart]) {
|
2009-12-29 22:38:31 +03:00
|
|
|
this->TestModel = cmCTest::GetTestModelFromString(tagmode.c_str());
|
2004-01-07 03:13:55 +03:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
tfin.close();
|
|
|
|
}
|
2016-06-27 23:44:16 +03:00
|
|
|
if (tag.empty() || (CM_NULLPTR != command) || this->Parts[PartStart]) {
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestOptionalLog(
|
|
|
|
this, DEBUG,
|
|
|
|
"TestModel: " << this->GetTestModelString() << std::endl, quiet);
|
|
|
|
cmCTestOptionalLog(
|
|
|
|
this, DEBUG, "TestModel: " << this->TestModel << std::endl, quiet);
|
|
|
|
if (this->TestModel == cmCTest::NIGHTLY) {
|
2009-12-29 22:38:31 +03:00
|
|
|
lctime = this->GetNightlyTime(
|
2010-01-05 16:53:37 +03:00
|
|
|
this->GetCTestConfiguration("NightlyStartTime"),
|
|
|
|
this->TomorrowTag);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-29 22:38:31 +03:00
|
|
|
char datestring[100];
|
2016-05-16 17:34:04 +03:00
|
|
|
sprintf(datestring, "%04d%02d%02d-%02d%02d", lctime->tm_year + 1900,
|
|
|
|
lctime->tm_mon + 1, lctime->tm_mday, lctime->tm_hour,
|
2009-12-29 22:38:31 +03:00
|
|
|
lctime->tm_min);
|
|
|
|
tag = datestring;
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ofstream ofs(tagfile.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
if (ofs) {
|
2009-12-29 22:38:31 +03:00
|
|
|
ofs << tag << std::endl;
|
|
|
|
ofs << this->GetTestModelString() << std::endl;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-29 22:38:31 +03:00
|
|
|
ofs.close();
|
2016-06-27 23:44:16 +03:00
|
|
|
if (CM_NULLPTR == command) {
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestOptionalLog(this, OUTPUT, "Create new tag: "
|
|
|
|
<< tag << " - " << this->GetTestModelString()
|
|
|
|
<< std::endl,
|
|
|
|
quiet);
|
2003-02-11 05:52:01 +03:00
|
|
|
}
|
2009-12-29 22:38:31 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
|
|
|
if (tfin) {
|
2009-12-29 22:38:31 +03:00
|
|
|
cmSystemTools::GetLineFromStream(tfin, tag);
|
|
|
|
tfin.close();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-29 22:38:31 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (tag.empty()) {
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Cannot read existing TAG file in "
|
|
|
|
<< testingDir << std::endl);
|
2009-12-29 22:38:31 +03:00
|
|
|
return 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2009-12-29 22:38:31 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestOptionalLog(this, OUTPUT, " Use existing tag: "
|
|
|
|
<< tag << " - " << this->GetTestModelString()
|
|
|
|
<< std::endl,
|
|
|
|
quiet);
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2009-12-29 22:38:31 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
this->CurrentTag = tag;
|
|
|
|
}
|
|
|
|
|
2004-01-26 21:57:26 +03:00
|
|
|
return 1;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
2009-11-24 16:58:59 +03:00
|
|
|
bool cmCTest::InitializeFromCommand(cmCTestStartCommand* command)
|
2005-06-16 21:18:21 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string src_dir = this->GetCTestConfiguration("SourceDirectory");
|
2014-03-11 03:04:11 +04:00
|
|
|
std::string bld_dir = this->GetCTestConfiguration("BuildDirectory");
|
2006-03-15 19:02:08 +03:00
|
|
|
this->DartVersion = 1;
|
2012-11-02 00:56:13 +04:00
|
|
|
this->DropSiteCDash = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (Part p = PartStart; p != PartCount; p = Part(p + 1)) {
|
2009-01-27 18:58:33 +03:00
|
|
|
this->Parts[p].SubmitFiles.clear();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-16 21:18:21 +04:00
|
|
|
|
|
|
|
cmMakefile* mf = command->GetMakefile();
|
2011-10-27 06:48:36 +04:00
|
|
|
std::string fname;
|
|
|
|
|
|
|
|
std::string src_dir_fname = src_dir;
|
|
|
|
src_dir_fname += "/CTestConfig.cmake";
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(src_dir_fname);
|
|
|
|
|
|
|
|
std::string bld_dir_fname = bld_dir;
|
|
|
|
bld_dir_fname += "/CTestConfig.cmake";
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(bld_dir_fname);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileExists(bld_dir_fname.c_str())) {
|
2011-10-27 06:48:36 +04:00
|
|
|
fname = bld_dir_fname;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (cmSystemTools::FileExists(src_dir_fname.c_str())) {
|
2011-10-27 06:48:36 +04:00
|
|
|
fname = src_dir_fname;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-10-27 06:48:36 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!fname.empty()) {
|
2015-02-17 17:58:25 +03:00
|
|
|
cmCTestOptionalLog(this, OUTPUT, " Reading ctest configuration file: "
|
2016-05-16 17:34:04 +03:00
|
|
|
<< fname << std::endl,
|
|
|
|
command->ShouldBeQuiet());
|
2015-04-18 15:50:32 +03:00
|
|
|
bool readit = mf->ReadDependentFile(fname.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!readit) {
|
2005-06-16 21:18:21 +04:00
|
|
|
std::string m = "Could not find include file: ";
|
|
|
|
m += fname;
|
2014-03-11 03:04:11 +04:00
|
|
|
command->SetError(m);
|
2005-06-16 21:18:21 +04:00
|
|
|
return false;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2015-02-17 17:58:25 +03:00
|
|
|
cmCTestOptionalLog(this, WARNING,
|
2016-05-16 17:34:04 +03:00
|
|
|
"Cannot locate CTest configuration: in BuildDirectory: "
|
|
|
|
<< bld_dir_fname << std::endl,
|
|
|
|
command->ShouldBeQuiet());
|
|
|
|
cmCTestOptionalLog(
|
|
|
|
this, WARNING, "Cannot locate CTest configuration: in SourceDirectory: "
|
|
|
|
<< src_dir_fname << std::endl,
|
|
|
|
command->ShouldBeQuiet());
|
|
|
|
}
|
2005-06-16 21:18:21 +04:00
|
|
|
|
2006-03-09 19:57:43 +03:00
|
|
|
this->SetCTestConfigurationFromCMakeVariable(mf, "NightlyStartTime",
|
2016-05-16 17:34:04 +03:00
|
|
|
"CTEST_NIGHTLY_START_TIME",
|
|
|
|
command->ShouldBeQuiet());
|
2015-02-17 17:58:25 +03:00
|
|
|
this->SetCTestConfigurationFromCMakeVariable(mf, "Site", "CTEST_SITE",
|
2016-05-16 17:34:04 +03:00
|
|
|
command->ShouldBeQuiet());
|
|
|
|
this->SetCTestConfigurationFromCMakeVariable(
|
|
|
|
mf, "BuildName", "CTEST_BUILD_NAME", command->ShouldBeQuiet());
|
2005-06-23 21:04:18 +04:00
|
|
|
const char* dartVersion = mf->GetDefinition("CTEST_DART_SERVER_VERSION");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (dartVersion) {
|
2006-03-15 19:02:08 +03:00
|
|
|
this->DartVersion = atoi(dartVersion);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->DartVersion < 0) {
|
2006-03-09 19:57:43 +03:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Invalid Dart server version: "
|
2016-05-16 17:34:04 +03:00
|
|
|
<< dartVersion << ". Please specify the version number."
|
|
|
|
<< std::endl);
|
2005-06-23 21:04:18 +04:00
|
|
|
return false;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-11-02 00:56:13 +04:00
|
|
|
this->DropSiteCDash = mf->IsOn("CTEST_DROP_SITE_CDASH");
|
2005-06-16 21:18:21 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->Initialize(bld_dir.c_str(), command)) {
|
2005-06-16 21:18:21 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
cmCTestOptionalLog(this, OUTPUT, " Use "
|
|
|
|
<< this->GetTestModelString()
|
|
|
|
<< " tag: " << this->GetCurrentTag() << std::endl,
|
|
|
|
command->ShouldBeQuiet());
|
2005-06-16 21:18:21 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2005-02-17 23:23:00 +03:00
|
|
|
bool cmCTest::UpdateCTestConfiguration()
|
2004-01-07 03:13:55 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->SuppressUpdatingCTestConfiguration) {
|
2005-05-08 21:47:20 +04:00
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string fileName = this->CTestConfigFile;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (fileName.empty()) {
|
2008-01-23 20:51:24 +03:00
|
|
|
fileName = this->BinaryDir + "/CTestConfiguration.ini";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::FileExists(fileName.c_str())) {
|
2008-01-23 20:51:24 +03:00
|
|
|
fileName = this->BinaryDir + "/DartConfiguration.tcl";
|
2005-04-01 23:57:55 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT,
|
|
|
|
"UpdateCTestConfiguration from :" << fileName << "\n");
|
|
|
|
if (!cmSystemTools::FileExists(fileName.c_str())) {
|
2005-07-03 06:50:57 +04:00
|
|
|
// No need to exit if we are not producing XML
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->ProduceXML) {
|
2014-03-11 16:35:32 +04:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Cannot find file: " << fileName
|
2016-05-16 17:34:04 +03:00
|
|
|
<< std::endl);
|
2005-07-03 06:50:57 +04:00
|
|
|
return false;
|
2004-01-07 03:13:55 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, "Parse Config file:" << fileName
|
|
|
|
<< "\n");
|
2005-07-03 06:50:57 +04:00
|
|
|
// parse the dart test file
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream fin(fileName.c_str());
|
2009-10-12 19:06:49 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!fin) {
|
2005-07-03 06:50:57 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-07-03 06:50:57 +04:00
|
|
|
|
|
|
|
char buffer[1024];
|
2016-05-16 17:34:04 +03:00
|
|
|
while (fin) {
|
2004-01-07 03:13:55 +03:00
|
|
|
buffer[0] = 0;
|
|
|
|
fin.getline(buffer, 1023);
|
|
|
|
buffer[1023] = 0;
|
2005-07-03 06:50:57 +04:00
|
|
|
std::string line = cmCTest::CleanString(buffer);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (line.empty()) {
|
2005-07-03 06:50:57 +04:00
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
while (fin && (line[line.size() - 1] == '\\')) {
|
|
|
|
line = line.substr(0, line.size() - 1);
|
2005-07-03 06:50:57 +04:00
|
|
|
buffer[0] = 0;
|
|
|
|
fin.getline(buffer, 1023);
|
|
|
|
buffer[1023] = 0;
|
|
|
|
line += cmCTest::CleanString(buffer);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (line[0] == '#') {
|
2005-07-03 06:50:57 +04:00
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-05-24 22:24:10 +03:00
|
|
|
std::string::size_type cpos = line.find_first_of(':');
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cpos == line.npos) {
|
2005-07-03 06:50:57 +04:00
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-07-03 06:50:57 +04:00
|
|
|
std::string key = line.substr(0, cpos);
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string value =
|
|
|
|
cmCTest::CleanString(line.substr(cpos + 1, line.npos));
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTestConfiguration[key] = value;
|
2004-01-07 03:13:55 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fin.close();
|
|
|
|
}
|
|
|
|
if (!this->GetCTestConfiguration("BuildDirectory").empty()) {
|
2006-10-13 00:31:54 +04:00
|
|
|
this->BinaryDir = this->GetCTestConfiguration("BuildDirectory");
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::ChangeDirectory(this->BinaryDir);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->TimeOut = atoi(this->GetCTestConfiguration("TimeOut").c_str());
|
2015-06-09 15:50:44 +03:00
|
|
|
std::string const& testLoad = this->GetCTestConfiguration("TestLoad");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!testLoad.empty()) {
|
2015-06-09 15:50:44 +03:00
|
|
|
unsigned long load;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::StringToULong(testLoad.c_str(), &load)) {
|
2015-06-09 15:50:44 +03:00
|
|
|
this->SetTestLoad(load);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
|
|
|
cmCTestLog(this, WARNING,
|
|
|
|
"Invalid value for 'Test Load' : " << testLoad << std::endl);
|
2015-06-09 15:50:44 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->ProduceXML) {
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CompressXMLFiles = cmSystemTools::IsOn(
|
2006-03-09 19:57:43 +03:00
|
|
|
this->GetCTestConfiguration("CompressSubmission").c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-02-17 23:23:00 +03:00
|
|
|
return true;
|
2004-01-07 03:13:55 +03:00
|
|
|
}
|
|
|
|
|
2004-05-07 20:53:35 +04:00
|
|
|
void cmCTest::BlockTestErrorDiagnostics()
|
|
|
|
{
|
|
|
|
cmSystemTools::PutEnv("DART_TEST_FROM_DART=1");
|
2005-09-16 01:22:06 +04:00
|
|
|
cmSystemTools::PutEnv("DASHBOARD_TEST_FROM_CTEST=" CMake_VERSION);
|
2004-05-07 20:53:35 +04:00
|
|
|
#if defined(_WIN32)
|
2006-03-09 19:57:43 +03:00
|
|
|
SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX);
|
2008-09-16 01:53:28 +04:00
|
|
|
#elif defined(__BEOS__) || defined(__HAIKU__)
|
2006-12-05 01:26:41 +03:00
|
|
|
disable_debugger(1);
|
2004-05-07 20:53:35 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCTest::SetTestModel(int mode)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->InteractiveDebugMode = false;
|
|
|
|
this->TestModel = mode;
|
2004-05-07 20:53:35 +04:00
|
|
|
}
|
|
|
|
|
2004-07-30 01:15:22 +04:00
|
|
|
bool cmCTest::SetTest(const char* ttype, bool report)
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::LowerCase(ttype) == "all") {
|
|
|
|
for (Part p = PartStart; p != PartCount; p = Part(p + 1)) {
|
2009-01-12 18:37:25 +03:00
|
|
|
this->Parts[p].Enable();
|
2003-12-26 23:02:26 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
return true;
|
|
|
|
}
|
2009-01-12 18:37:25 +03:00
|
|
|
Part p = this->GetPartFromName(ttype);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (p != PartCount) {
|
2009-01-12 18:37:25 +03:00
|
|
|
this->Parts[p].Enable();
|
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
|
|
|
if (report) {
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Don't know about test \""
|
|
|
|
<< ttype << "\" yet..." << std::endl);
|
2003-01-07 07:13:15 +03:00
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmCTest::Finalize()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmCTest::OpenOutputFile(const std::string& path, const std::string& name,
|
|
|
|
cmGeneratedFileStream& stream, bool compress)
|
2004-09-09 16:41:05 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string testingDir = this->BinaryDir + "/Testing";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!path.empty()) {
|
2004-09-09 16:41:05 +04:00
|
|
|
testingDir += "/" + path;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (cmSystemTools::FileExists(testingDir.c_str())) {
|
|
|
|
if (!cmSystemTools::FileIsDirectory(testingDir)) {
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "File "
|
|
|
|
<< testingDir << " is in the place of the testing directory"
|
|
|
|
<< std::endl);
|
2004-09-09 16:41:05 +04:00
|
|
|
return false;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
|
|
|
if (!cmSystemTools::MakeDirectory(testingDir.c_str())) {
|
2005-06-01 02:40:43 +04:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Cannot create directory " << testingDir
|
2016-05-16 17:34:04 +03:00
|
|
|
<< std::endl);
|
2004-09-09 16:41:05 +04:00
|
|
|
return false;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-09-09 16:41:05 +04:00
|
|
|
std::string filename = testingDir + "/" + name;
|
2005-01-27 18:15:01 +03:00
|
|
|
stream.Open(filename.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!stream) {
|
2006-03-09 19:57:43 +03:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Problem opening file: " << filename
|
2016-05-16 17:34:04 +03:00
|
|
|
<< std::endl);
|
2004-09-09 16:41:05 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (compress) {
|
|
|
|
if (this->CompressXMLFiles) {
|
2005-01-27 18:15:01 +03:00
|
|
|
stream.SetCompression(true);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-01-27 18:15:01 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-01-12 18:37:55 +03:00
|
|
|
bool cmCTest::AddIfExists(Part part, const char* file)
|
2005-01-27 18:15:01 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CTestFileExists(file)) {
|
2009-01-12 18:37:55 +03:00
|
|
|
this->AddSubmitFile(part, file);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2005-01-27 18:15:01 +03:00
|
|
|
std::string name = file;
|
|
|
|
name += ".gz";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CTestFileExists(name)) {
|
2009-01-12 18:37:55 +03:00
|
|
|
this->AddSubmitFile(part, file);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2005-01-27 18:15:01 +03:00
|
|
|
return false;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-09-09 16:41:05 +04:00
|
|
|
return true;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
|
|
|
|
2004-09-09 16:41:05 +04:00
|
|
|
bool cmCTest::CTestFileExists(const std::string& filename)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string testingDir =
|
|
|
|
this->BinaryDir + "/Testing/" + this->CurrentTag + "/" + filename;
|
2004-09-09 16:41:05 +04:00
|
|
|
return cmSystemTools::FileExists(testingDir.c_str());
|
|
|
|
}
|
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
cmCTestGenericHandler* cmCTest::GetInitializedHandler(const char* handler)
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
cmCTest::t_TestingHandlers::iterator it =
|
2006-05-10 21:56:27 +04:00
|
|
|
this->TestingHandlers.find(handler);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (it == this->TestingHandlers.end()) {
|
2016-06-27 23:44:16 +03:00
|
|
|
return CM_NULLPTR;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-23 21:04:18 +04:00
|
|
|
it->second->Initialize();
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
2005-02-17 23:23:00 +03:00
|
|
|
cmCTestGenericHandler* cmCTest::GetHandler(const char* handler)
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
cmCTest::t_TestingHandlers::iterator it =
|
2006-05-10 21:56:27 +04:00
|
|
|
this->TestingHandlers.find(handler);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (it == this->TestingHandlers.end()) {
|
2016-06-27 23:44:16 +03:00
|
|
|
return CM_NULLPTR;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-02-17 23:23:00 +03:00
|
|
|
return it->second;
|
|
|
|
}
|
2004-09-09 16:41:05 +04:00
|
|
|
|
2005-02-17 23:23:00 +03:00
|
|
|
int cmCTest::ExecuteHandler(const char* shandler)
|
|
|
|
{
|
|
|
|
cmCTestGenericHandler* handler = this->GetHandler(shandler);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!handler) {
|
2005-02-17 23:23:00 +03:00
|
|
|
return -1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-21 01:57:32 +04:00
|
|
|
handler->Initialize();
|
2006-03-09 19:57:43 +03:00
|
|
|
return handler->ProcessHandler();
|
2005-02-17 23:23:00 +03:00
|
|
|
}
|
2004-09-09 16:41:05 +04:00
|
|
|
|
2016-06-21 03:43:42 +03:00
|
|
|
int cmCTest::ProcessSteps()
|
2002-12-17 05:19:21 +03:00
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
bool notest = true;
|
2003-02-11 07:19:01 +03:00
|
|
|
int update_count = 0;
|
2002-12-17 05:19:21 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
for (Part p = PartStart; notest && p != PartCount; p = Part(p + 1)) {
|
2009-01-12 18:37:25 +03:00
|
|
|
notest = !this->Parts[p];
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->Parts[PartUpdate] && (this->GetRemainingTimeAllowed() - 120 > 0)) {
|
2005-02-17 23:23:00 +03:00
|
|
|
cmCTestGenericHandler* uphandler = this->GetHandler("update");
|
2016-05-16 17:34:04 +03:00
|
|
|
uphandler->SetPersistentOption(
|
|
|
|
"SourceDirectory",
|
2006-03-09 19:57:43 +03:00
|
|
|
this->GetCTestConfiguration("SourceDirectory").c_str());
|
|
|
|
update_count = uphandler->ProcessHandler();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (update_count < 0) {
|
2004-09-06 20:46:35 +04:00
|
|
|
res |= cmCTest::UPDATE_ERRORS;
|
2003-02-11 07:19:01 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->TestModel == cmCTest::CONTINUOUS && !update_count) {
|
2003-02-11 07:19:01 +03:00
|
|
|
return 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-01-12 18:37:25 +03:00
|
|
|
if (this->Parts[PartConfigure] &&
|
2016-05-16 17:34:04 +03:00
|
|
|
(this->GetRemainingTimeAllowed() - 120 > 0)) {
|
|
|
|
if (this->GetHandler("configure")->ProcessHandler() < 0) {
|
2004-09-06 20:46:35 +04:00
|
|
|
res |= cmCTest::CONFIGURE_ERRORS;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->Parts[PartBuild] && (this->GetRemainingTimeAllowed() - 120 > 0)) {
|
2004-01-07 03:13:55 +03:00
|
|
|
this->UpdateCTestConfiguration();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->GetHandler("build")->ProcessHandler() < 0) {
|
2004-09-06 20:46:35 +04:00
|
|
|
res |= cmCTest::BUILD_ERRORS;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-01-12 18:37:25 +03:00
|
|
|
if ((this->Parts[PartTest] || notest) &&
|
2016-05-16 17:34:04 +03:00
|
|
|
(this->GetRemainingTimeAllowed() - 120 > 0)) {
|
2004-01-07 03:13:55 +03:00
|
|
|
this->UpdateCTestConfiguration();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->GetHandler("test")->ProcessHandler() < 0) {
|
2004-09-06 20:46:35 +04:00
|
|
|
res |= cmCTest::TEST_ERRORS;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-01-12 18:37:25 +03:00
|
|
|
if (this->Parts[PartCoverage] &&
|
2016-05-16 17:34:04 +03:00
|
|
|
(this->GetRemainingTimeAllowed() - 120 > 0)) {
|
2004-01-07 03:13:55 +03:00
|
|
|
this->UpdateCTestConfiguration();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->GetHandler("coverage")->ProcessHandler() < 0) {
|
2004-10-18 02:49:42 +04:00
|
|
|
res |= cmCTest::COVERAGE_ERRORS;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-01-12 18:37:25 +03:00
|
|
|
if (this->Parts[PartMemCheck] &&
|
2016-05-16 17:34:04 +03:00
|
|
|
(this->GetRemainingTimeAllowed() - 120 > 0)) {
|
2004-01-07 03:13:55 +03:00
|
|
|
this->UpdateCTestConfiguration();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->GetHandler("memcheck")->ProcessHandler() < 0) {
|
2004-09-06 20:46:35 +04:00
|
|
|
res |= cmCTest::MEMORY_ERRORS;
|
2002-12-17 05:19:21 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!notest) {
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string notes_dir = this->BinaryDir + "/Testing/Notes";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileIsDirectory(notes_dir)) {
|
2004-04-30 20:36:18 +04:00
|
|
|
cmsys::Directory d;
|
2014-10-15 16:54:05 +04:00
|
|
|
d.Load(notes_dir);
|
2004-05-01 17:57:35 +04:00
|
|
|
unsigned long kk;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (kk = 0; kk < d.GetNumberOfFiles(); kk++) {
|
2004-05-01 17:57:35 +04:00
|
|
|
const char* file = d.GetFile(kk);
|
2004-04-30 20:36:18 +04:00
|
|
|
std::string fullname = notes_dir + "/" + file;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileExists(fullname.c_str()) &&
|
|
|
|
!cmSystemTools::FileIsDirectory(fullname)) {
|
|
|
|
if (!this->NotesFiles.empty()) {
|
2006-03-15 19:02:08 +03:00
|
|
|
this->NotesFiles += ";";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->NotesFiles += fullname;
|
2009-01-12 18:37:25 +03:00
|
|
|
this->Parts[PartNotes].Enable();
|
2004-04-30 20:36:18 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->Parts[PartNotes]) {
|
2004-01-07 03:13:55 +03:00
|
|
|
this->UpdateCTestConfiguration();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->NotesFiles.empty()) {
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GenerateNotesFile(this->NotesFiles.c_str());
|
2004-01-07 03:13:55 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->Parts[PartSubmit]) {
|
2004-01-07 03:13:55 +03:00
|
|
|
this->UpdateCTestConfiguration();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->GetHandler("submit")->ProcessHandler() < 0) {
|
2005-05-03 16:17:39 +04:00
|
|
|
res |= cmCTest::SUBMIT_ERRORS;
|
2005-10-04 18:58:21 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (res != 0) {
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Errors while running CTest" << std::endl);
|
|
|
|
}
|
2002-12-17 05:19:21 +03:00
|
|
|
return res;
|
|
|
|
}
|
2003-02-11 05:52:01 +03:00
|
|
|
|
|
|
|
std::string cmCTest::GetTestModelString()
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->SpecificTrack.empty()) {
|
2006-04-28 19:59:31 +04:00
|
|
|
return this->SpecificTrack;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
switch (this->TestModel) {
|
|
|
|
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)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!str) {
|
2004-01-07 03:13:55 +03:00
|
|
|
return cmCTest::EXPERIMENTAL;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-01-07 03:13:55 +03:00
|
|
|
std::string rstr = cmSystemTools::LowerCase(str);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmHasLiteralPrefix(rstr.c_str(), "cont")) {
|
2004-01-07 03:13:55 +03:00
|
|
|
return cmCTest::CONTINUOUS;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (cmHasLiteralPrefix(rstr.c_str(), "nigh")) {
|
2004-01-07 03:13:55 +03:00
|
|
|
return cmCTest::NIGHTLY;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-01-07 03:13:55 +03:00
|
|
|
return cmCTest::EXPERIMENTAL;
|
|
|
|
}
|
|
|
|
|
2005-06-10 17:01:37 +04:00
|
|
|
//######################################################################
|
|
|
|
//######################################################################
|
|
|
|
//######################################################################
|
|
|
|
//######################################################################
|
|
|
|
|
2014-08-04 23:16:40 +04:00
|
|
|
int cmCTest::RunMakeCommand(const char* command, std::string& output,
|
2016-05-16 17:34:04 +03:00
|
|
|
int* retVal, const char* dir, int timeout,
|
|
|
|
std::ostream& ofs)
|
2003-08-08 03:23:49 +04:00
|
|
|
{
|
2005-06-10 17:01:37 +04:00
|
|
|
// First generate the command and arguments
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string> args = cmSystemTools::ParseArguments(command);
|
2003-08-08 03:23:49 +04:00
|
|
|
|
2016-05-27 00:05:30 +03:00
|
|
|
if (args.empty()) {
|
2003-08-08 03:23:49 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-08 03:23:49 +04:00
|
|
|
std::vector<const char*> argv;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator a = args.begin();
|
|
|
|
a != args.end(); ++a) {
|
2003-08-08 03:23:49 +04:00
|
|
|
argv.push_back(a->c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-06-27 23:44:16 +03:00
|
|
|
argv.push_back(CM_NULLPTR);
|
2003-08-08 03:23:49 +04:00
|
|
|
|
2014-08-04 23:16:40 +04:00
|
|
|
output = "";
|
2005-06-10 17:01:37 +04:00
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, "Run command:");
|
|
|
|
std::vector<const char*>::iterator ait;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (ait = argv.begin(); ait != argv.end() && *ait; ++ait) {
|
2005-06-10 17:01:37 +04:00
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, " \"" << *ait << "\"");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-10 17:01:37 +04:00
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, std::endl);
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2005-06-10 17:01:37 +04:00
|
|
|
// Now create process object
|
2003-08-08 03:23:49 +04:00
|
|
|
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
|
|
|
|
2005-06-10 17:01:37 +04:00
|
|
|
// Initialize tick's
|
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;
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestLog(this, HANDLER_PROGRESS_OUTPUT, " Each . represents "
|
|
|
|
<< tick_len << " bytes of output" << std::endl
|
|
|
|
<< " " << std::flush);
|
2016-06-27 23:44:16 +03:00
|
|
|
while (cmsysProcess_WaitForData(cp, &data, &length, CM_NULLPTR)) {
|
2016-05-16 17:34:04 +03:00
|
|
|
for (int cc = 0; cc < length; ++cc) {
|
|
|
|
if (data[cc] == 0) {
|
2014-08-04 23:16:40 +04:00
|
|
|
data[cc] = '\n';
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-08-04 23:16:40 +04:00
|
|
|
output.append(data, length);
|
2016-05-16 17:34:04 +03:00
|
|
|
while (output.size() > (tick * tick_len)) {
|
|
|
|
tick++;
|
2015-07-03 23:52:23 +03:00
|
|
|
cmCTestLog(this, HANDLER_PROGRESS_OUTPUT, "." << std::flush);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (tick % tick_line_len == 0 && tick > 0) {
|
2015-07-03 23:52:23 +03:00
|
|
|
cmCTestLog(this, HANDLER_PROGRESS_OUTPUT,
|
2016-05-16 17:34:04 +03:00
|
|
|
" Size: " << int((double(output.size()) / 1024.0) + 1)
|
|
|
|
<< "K" << std::endl
|
|
|
|
<< " " << std::flush);
|
2003-08-08 03:23:49 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, cmCTestLogWrite(data, length));
|
2016-05-16 17:34:04 +03:00
|
|
|
if (ofs) {
|
2005-06-01 01:32:40 +04:00
|
|
|
ofs << cmCTestLogWrite(data, length);
|
2003-08-08 03:23:49 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-07-03 23:52:23 +03:00
|
|
|
cmCTestLog(this, HANDLER_PROGRESS_OUTPUT, " Size of output: "
|
2016-05-16 17:34:04 +03:00
|
|
|
<< int(double(output.size()) / 1024.0) << "K" << std::endl);
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2016-06-27 23:44:16 +03:00
|
|
|
cmsysProcess_WaitForExit(cp, CM_NULLPTR);
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-18 19:30:53 +04:00
|
|
|
int result = cmsysProcess_GetState(cp);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (result == cmsysProcess_State_Exited) {
|
2003-08-18 19:30:53 +04:00
|
|
|
*retVal = cmsysProcess_GetExitValue(cp);
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT,
|
|
|
|
"Command exited with the value: " << *retVal << std::endl);
|
|
|
|
} else if (result == cmsysProcess_State_Exception) {
|
2003-08-18 19:30:53 +04:00
|
|
|
*retVal = cmsysProcess_GetExitException(cp);
|
2006-03-09 19:57:43 +03:00
|
|
|
cmCTestLog(this, WARNING, "There was an exception: " << *retVal
|
2016-05-16 17:34:04 +03:00
|
|
|
<< std::endl);
|
|
|
|
} else if (result == cmsysProcess_State_Expired) {
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, WARNING, "There was a timeout" << std::endl);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (result == cmsysProcess_State_Error) {
|
2014-08-04 23:16:40 +04:00
|
|
|
output += "\n*** ERROR executing: ";
|
|
|
|
output += cmsysProcess_GetErrorString(cp);
|
|
|
|
output += "\n***The build process failed.";
|
2006-03-09 19:57:43 +03:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "There was an error: "
|
2016-05-16 17:34:04 +03:00
|
|
|
<< cmsysProcess_GetErrorString(cp) << std::endl);
|
|
|
|
}
|
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
|
|
|
|
2005-06-10 17:01:37 +04:00
|
|
|
//######################################################################
|
|
|
|
//######################################################################
|
|
|
|
//######################################################################
|
|
|
|
//######################################################################
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
int cmCTest::RunTest(std::vector<const char*> argv, std::string* output,
|
|
|
|
int* retVal, std::ostream* log, double testTimeOut,
|
2008-11-26 22:38:43 +03:00
|
|
|
std::vector<std::string>* environment)
|
2003-08-14 02:17:11 +04:00
|
|
|
{
|
2015-01-15 02:06:11 +03:00
|
|
|
bool modifyEnv = (environment && !environment->empty());
|
2008-11-26 22:38:43 +03:00
|
|
|
|
2007-06-06 19:02:24 +04:00
|
|
|
// determine how much time we have
|
|
|
|
double timeout = this->GetRemainingTimeAllowed() - 120;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->TimeOut > 0 && this->TimeOut < timeout) {
|
2007-06-06 19:02:24 +04:00
|
|
|
timeout = this->TimeOut;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (testTimeOut > 0 && testTimeOut < this->GetRemainingTimeAllowed()) {
|
2007-06-06 19:02:24 +04:00
|
|
|
timeout = testTimeOut;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-09-18 19:34:53 +04:00
|
|
|
|
2007-06-06 19:02:24 +04:00
|
|
|
// always have at least 1 second if we got to here
|
2016-05-16 17:34:04 +03:00
|
|
|
if (timeout <= 0) {
|
2007-06-06 19:02:24 +04:00
|
|
|
timeout = 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-08 22:16:04 +04:00
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT,
|
|
|
|
"Test timeout computed to be: " << timeout << "\n");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::SameFile(argv[0], cmSystemTools::GetCTestCommand()) &&
|
|
|
|
!this->ForceNewCTestProcess) {
|
2004-01-07 19:24:22 +03:00
|
|
|
cmCTest inst;
|
2006-03-15 19:02:08 +03:00
|
|
|
inst.ConfigType = this->ConfigType;
|
2007-06-06 19:02:24 +04:00
|
|
|
inst.TimeOut = timeout;
|
2009-01-05 22:14:10 +03:00
|
|
|
|
|
|
|
// Capture output of the child ctest.
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream oss;
|
2009-01-05 22:14:10 +03:00
|
|
|
inst.SetStreams(&oss, &oss);
|
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
std::vector<std::string> args;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (unsigned int i = 0; i < argv.size(); ++i) {
|
|
|
|
if (argv[i]) {
|
2012-08-13 21:42:58 +04:00
|
|
|
// make sure we pass the timeout in for any build and test
|
|
|
|
// invocations. Since --build-generator is required this is a
|
2007-06-04 21:39:43 +04:00
|
|
|
// good place to check for it, and to add the arguments in
|
2016-05-16 17:34:04 +03:00
|
|
|
if (strcmp(argv[i], "--build-generator") == 0 && timeout > 0) {
|
2007-01-25 19:16:16 +03:00
|
|
|
args.push_back("--test-timeout");
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream msg;
|
2007-06-06 19:02:24 +04:00
|
|
|
msg << timeout;
|
2007-01-25 19:16:16 +03:00
|
|
|
args.push_back(msg.str());
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
args.push_back(argv[i]);
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (log) {
|
2004-02-10 23:51:29 +03:00
|
|
|
*log << "* Run internal CTest" << std::endl;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-01-28 21:17:10 +03:00
|
|
|
std::string oldpath = cmSystemTools::GetCurrentWorkingDirectory();
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2016-06-28 17:17:52 +03:00
|
|
|
CM_AUTO_PTR<cmSystemTools::SaveRestoreEnvironment> saveEnv;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (modifyEnv) {
|
2012-04-25 00:24:17 +04:00
|
|
|
saveEnv.reset(new cmSystemTools::SaveRestoreEnvironment);
|
|
|
|
cmSystemTools::AppendEnv(*environment);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-11-26 22:38:43 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
*retVal = inst.Run(args, output);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (output) {
|
2015-03-25 19:38:37 +03:00
|
|
|
*output += oss.str();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (log && output) {
|
2014-03-11 16:35:32 +04:00
|
|
|
*log << *output;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::ChangeDirectory(oldpath);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (output) {
|
2015-03-25 19:38:37 +03:00
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT,
|
|
|
|
"Internal cmCTest object used to run test." << std::endl
|
2016-05-16 17:34:04 +03:00
|
|
|
<< *output
|
|
|
|
<< std::endl);
|
|
|
|
}
|
2008-11-26 22:38:43 +03:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
return cmsysProcess_State_Exited;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2003-11-26 19:41:57 +03:00
|
|
|
std::vector<char> tempOutput;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (output) {
|
2003-08-14 02:17:11 +04:00
|
|
|
*output = "";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2003-08-14 02:17:11 +04:00
|
|
|
|
2016-06-28 17:17:52 +03:00
|
|
|
CM_AUTO_PTR<cmSystemTools::SaveRestoreEnvironment> saveEnv;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (modifyEnv) {
|
2012-04-25 00:24:17 +04:00
|
|
|
saveEnv.reset(new cmSystemTools::SaveRestoreEnvironment);
|
|
|
|
cmSystemTools::AppendEnv(*environment);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-11-26 22:38:43 +03:00
|
|
|
|
2003-08-14 02:17:11 +04:00
|
|
|
cmsysProcess* cp = cmsysProcess_New();
|
|
|
|
cmsysProcess_SetCommand(cp, &*argv.begin());
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, DEBUG, "Command is: " << argv[0] << std::endl);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::GetRunCommandHideConsole()) {
|
2003-08-14 02:17:11 +04:00
|
|
|
cmsysProcess_SetOption(cp, cmsysProcess_Option_HideWindow, 1);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-10-19 18:45:19 +04:00
|
|
|
|
2007-01-29 20:42:33 +03:00
|
|
|
cmsysProcess_SetTimeout(cp, timeout);
|
2003-08-14 02:17:11 +04:00
|
|
|
cmsysProcess_Execute(cp);
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2003-08-14 02:17:11 +04:00
|
|
|
char* data;
|
|
|
|
int length;
|
2016-06-27 23:44:16 +03:00
|
|
|
while (cmsysProcess_WaitForData(cp, &data, &length, CM_NULLPTR)) {
|
2016-05-16 17:34:04 +03:00
|
|
|
if (output) {
|
|
|
|
tempOutput.insert(tempOutput.end(), data, data + length);
|
|
|
|
}
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, cmCTestLogWrite(data, length));
|
2016-05-16 17:34:04 +03:00
|
|
|
if (log) {
|
2004-02-10 23:51:29 +03:00
|
|
|
log->write(data, length);
|
2003-08-14 02:17:11 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2016-06-27 23:44:16 +03:00
|
|
|
cmsysProcess_WaitForExit(cp, CM_NULLPTR);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (output && tempOutput.begin() != tempOutput.end()) {
|
2003-11-26 19:41:57 +03:00
|
|
|
output->append(&*tempOutput.begin(), tempOutput.size());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-09 19:57:43 +03:00
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, "-- Process completed"
|
2016-05-16 17:34:04 +03:00
|
|
|
<< std::endl);
|
2003-08-14 02:17:11 +04:00
|
|
|
|
|
|
|
int result = cmsysProcess_GetState(cp);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (result == cmsysProcess_State_Exited) {
|
2003-08-14 02:17:11 +04:00
|
|
|
*retVal = cmsysProcess_GetExitValue(cp);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (*retVal != 0 && this->OutputTestOutputOnTestFailure) {
|
|
|
|
OutputTestErrors(tempOutput);
|
|
|
|
}
|
|
|
|
} else if (result == cmsysProcess_State_Exception) {
|
|
|
|
if (this->OutputTestOutputOnTestFailure) {
|
|
|
|
OutputTestErrors(tempOutput);
|
2003-08-14 02:17:11 +04:00
|
|
|
}
|
|
|
|
*retVal = cmsysProcess_GetExitException(cp);
|
2004-01-28 17:47:31 +03:00
|
|
|
std::string outerr = "\n*** Exception executing: ";
|
|
|
|
outerr += cmsysProcess_GetExceptionString(cp);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (output) {
|
2015-03-25 19:38:37 +03:00
|
|
|
*output += outerr;
|
2003-08-14 02:17:11 +04:00
|
|
|
}
|
2016-06-07 00:53:32 +03:00
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, outerr << std::endl
|
|
|
|
<< std::flush);
|
2016-05-16 17:34:04 +03: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);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (output) {
|
2015-03-25 19:38:37 +03:00
|
|
|
*output += outerr;
|
2003-08-14 02:17:11 +04:00
|
|
|
}
|
2016-06-07 00:53:32 +03:00
|
|
|
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, outerr << std::endl
|
|
|
|
<< std::flush);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
2011-11-19 02:13:07 +04:00
|
|
|
std::string cmCTest::SafeBuildIdField(const std::string& value)
|
|
|
|
{
|
|
|
|
std::string safevalue(value);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (safevalue != "") {
|
2011-11-19 02:13:07 +04:00
|
|
|
// Disallow non-filename and non-space whitespace characters.
|
|
|
|
// If they occur, replace them with ""
|
|
|
|
//
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* disallowed = "\\:*?\"<>|\n\r\t\f\v";
|
2011-11-19 02:13:07 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (safevalue.find_first_of(disallowed) != value.npos) {
|
2011-11-19 02:13:07 +04:00
|
|
|
std::string::size_type i = 0;
|
|
|
|
std::string::size_type n = strlen(disallowed);
|
|
|
|
char replace[2];
|
|
|
|
replace[1] = 0;
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
for (i = 0; i < n; ++i) {
|
2011-11-19 02:13:07 +04:00
|
|
|
replace[0] = disallowed[i];
|
|
|
|
cmSystemTools::ReplaceString(safevalue, replace, "");
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-11-19 02:13:07 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (safevalue == "") {
|
2011-11-19 02:13:07 +04:00
|
|
|
safevalue = "(empty)";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-11-19 02:13:07 +04:00
|
|
|
|
|
|
|
return safevalue;
|
|
|
|
}
|
|
|
|
|
2015-05-24 01:00:16 +03:00
|
|
|
void cmCTest::StartXML(cmXMLWriter& xml, bool append)
|
2003-12-16 01:26:00 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CurrentTag.empty()) {
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Current Tag empty, this may mean"
|
|
|
|
" NightlStartTime was not set correctly."
|
|
|
|
<< std::endl);
|
2007-08-04 00:41:49 +04:00
|
|
|
cmSystemTools::SetFatalErrorOccured();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-11-19 02:13:07 +04:00
|
|
|
|
2008-01-30 19:17:36 +03:00
|
|
|
// find out about the system
|
|
|
|
cmsys::SystemInformation info;
|
|
|
|
info.RunCPUCheck();
|
|
|
|
info.RunOSCheck();
|
|
|
|
info.RunMemoryCheck();
|
2011-11-19 02:13:07 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string buildname =
|
|
|
|
cmCTest::SafeBuildIdField(this->GetCTestConfiguration("BuildName"));
|
|
|
|
std::string stamp = cmCTest::SafeBuildIdField(this->CurrentTag + "-" +
|
|
|
|
this->GetTestModelString());
|
|
|
|
std::string site =
|
|
|
|
cmCTest::SafeBuildIdField(this->GetCTestConfiguration("Site"));
|
2011-11-19 02:13:07 +04:00
|
|
|
|
2015-05-24 01:00:16 +03:00
|
|
|
xml.StartDocument();
|
|
|
|
xml.StartElement("Site");
|
|
|
|
xml.Attribute("BuildName", buildname);
|
|
|
|
xml.BreakAttributes();
|
|
|
|
xml.Attribute("BuildStamp", stamp);
|
|
|
|
xml.Attribute("Name", site);
|
|
|
|
xml.Attribute("Generator",
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string("ctest-") + cmVersion::GetCMakeVersion());
|
|
|
|
if (append) {
|
2015-05-24 01:00:16 +03:00
|
|
|
xml.Attribute("Append", "true");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-05-24 01:00:16 +03:00
|
|
|
xml.Attribute("CompilerName", this->GetCTestConfiguration("Compiler"));
|
2015-08-11 10:52:51 +03:00
|
|
|
xml.Attribute("CompilerVersion",
|
2016-05-16 17:34:04 +03:00
|
|
|
this->GetCTestConfiguration("CompilerVersion"));
|
2015-05-24 01:00:16 +03:00
|
|
|
xml.Attribute("OSName", info.GetOSName());
|
|
|
|
xml.Attribute("Hostname", info.GetHostname());
|
|
|
|
xml.Attribute("OSRelease", info.GetOSRelease());
|
|
|
|
xml.Attribute("OSVersion", info.GetOSVersion());
|
|
|
|
xml.Attribute("OSPlatform", info.GetOSPlatform());
|
|
|
|
xml.Attribute("Is64Bits", info.Is64Bits());
|
|
|
|
xml.Attribute("VendorString", info.GetVendorString());
|
|
|
|
xml.Attribute("VendorID", info.GetVendorID());
|
|
|
|
xml.Attribute("FamilyID", info.GetFamilyID());
|
|
|
|
xml.Attribute("ModelID", info.GetModelID());
|
|
|
|
xml.Attribute("ProcessorCacheSize", info.GetProcessorCacheSize());
|
|
|
|
xml.Attribute("NumberOfLogicalCPU", info.GetNumberOfLogicalCPU());
|
|
|
|
xml.Attribute("NumberOfPhysicalCPU", info.GetNumberOfPhysicalCPU());
|
|
|
|
xml.Attribute("TotalVirtualMemory", info.GetTotalVirtualMemory());
|
|
|
|
xml.Attribute("TotalPhysicalMemory", info.GetTotalPhysicalMemory());
|
|
|
|
xml.Attribute("LogicalProcessorsPerPhysical",
|
2016-05-16 17:34:04 +03:00
|
|
|
info.GetLogicalProcessorsPerPhysical());
|
2015-05-24 01:00:16 +03:00
|
|
|
xml.Attribute("ProcessorClockFrequency", info.GetProcessorClockFrequency());
|
2015-07-08 04:50:32 +03:00
|
|
|
|
|
|
|
std::string changeId = this->GetCTestConfiguration("ChangeId");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!changeId.empty()) {
|
2015-07-08 04:50:32 +03:00
|
|
|
xml.Attribute("ChangeId", changeId);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-07-08 04:50:32 +03:00
|
|
|
|
2015-05-24 01:00:16 +03:00
|
|
|
this->AddSiteProperties(xml);
|
2003-12-16 01:26:00 +03:00
|
|
|
}
|
|
|
|
|
2015-05-24 01:00:16 +03:00
|
|
|
void cmCTest::AddSiteProperties(cmXMLWriter& xml)
|
2009-01-09 20:05:23 +03:00
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
cmCTestScriptHandler* ch =
|
2009-01-09 20:05:23 +03:00
|
|
|
static_cast<cmCTestScriptHandler*>(this->GetHandler("script"));
|
2016-05-16 17:34:04 +03:00
|
|
|
cmake* cm = ch->GetCMake();
|
2009-01-09 20:56:09 +03:00
|
|
|
// if no CMake then this is the old style script and props like
|
|
|
|
// this will not work anyway.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cm) {
|
2009-01-09 20:56:09 +03:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-02-11 00:08:40 +03:00
|
|
|
// This code should go when cdash is changed to use labels only
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* subproject = cm->GetState()->GetGlobalProperty("SubProject");
|
|
|
|
if (subproject) {
|
2015-05-24 01:00:16 +03:00
|
|
|
xml.StartElement("Subproject");
|
|
|
|
xml.Attribute("name", subproject);
|
2012-08-13 21:42:58 +04:00
|
|
|
const char* labels =
|
2016-05-16 17:34:04 +03:00
|
|
|
ch->GetCMake()->GetState()->GetGlobalProperty("SubProjectLabels");
|
|
|
|
if (labels) {
|
2015-05-24 01:00:16 +03:00
|
|
|
xml.StartElement("Labels");
|
2009-01-09 20:05:23 +03:00
|
|
|
std::string l = labels;
|
|
|
|
std::vector<std::string> args;
|
|
|
|
cmSystemTools::ExpandListArgument(l, args);
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::iterator i = args.begin();
|
|
|
|
i != args.end(); ++i) {
|
2015-05-24 01:00:16 +03:00
|
|
|
xml.Element("Label", *i);
|
2009-01-09 20:05:23 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
xml.EndElement();
|
2009-01-09 20:05:23 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
xml.EndElement();
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2009-02-11 00:08:40 +03:00
|
|
|
// This code should stay when cdash only does label based sub-projects
|
2015-04-11 15:15:55 +03:00
|
|
|
const char* label = cm->GetState()->GetGlobalProperty("Label");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (label) {
|
2015-05-24 01:00:16 +03:00
|
|
|
xml.StartElement("Labels");
|
|
|
|
xml.Element("Label", label);
|
|
|
|
xml.EndElement();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-01-09 20:05:23 +03:00
|
|
|
}
|
|
|
|
|
2015-05-24 01:00:16 +03:00
|
|
|
void cmCTest::EndXML(cmXMLWriter& xml)
|
2003-12-16 01:26:00 +03:00
|
|
|
{
|
2015-05-24 01:00:16 +03:00
|
|
|
xml.EndElement(); // Site
|
|
|
|
xml.EndDocument();
|
2003-12-16 01:26:00 +03:00
|
|
|
}
|
|
|
|
|
2015-05-24 01:08:35 +03:00
|
|
|
int cmCTest::GenerateCTestNotesOutput(cmXMLWriter& xml,
|
2016-05-16 17:34:04 +03:00
|
|
|
const cmCTest::VectorOfStrings& files)
|
2003-12-26 23:02:26 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string buildname =
|
|
|
|
cmCTest::SafeBuildIdField(this->GetCTestConfiguration("BuildName"));
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTest::VectorOfStrings::const_iterator it;
|
2015-05-24 01:08:35 +03:00
|
|
|
xml.StartDocument();
|
2016-05-16 17:34:04 +03:00
|
|
|
xml.ProcessingInstruction("xml-stylesheet",
|
|
|
|
"type=\"text/xsl\" "
|
|
|
|
"href=\"Dart/Source/Server/XSL/Build.xsl "
|
|
|
|
"<file:///Dart/Source/Server/XSL/Build.xsl> \"");
|
2015-05-24 01:08:35 +03:00
|
|
|
xml.StartElement("Site");
|
|
|
|
xml.Attribute("BuildName", buildname);
|
2016-05-16 17:34:04 +03:00
|
|
|
xml.Attribute("BuildStamp",
|
|
|
|
this->CurrentTag + "-" + this->GetTestModelString());
|
2015-05-24 01:08:35 +03:00
|
|
|
xml.Attribute("Name", this->GetCTestConfiguration("Site"));
|
2016-05-16 17:34:04 +03:00
|
|
|
xml.Attribute("Generator",
|
|
|
|
std::string("ctest") + cmVersion::GetCMakeVersion());
|
2015-05-24 01:08:35 +03:00
|
|
|
this->AddSiteProperties(xml);
|
|
|
|
xml.StartElement("Notes");
|
2003-12-26 23:02:26 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
for (it = files.begin(); it != files.end(); it++) {
|
2014-03-11 16:35:32 +04:00
|
|
|
cmCTestLog(this, OUTPUT, "\tAdd file: " << *it << std::endl);
|
2004-07-21 00:18:22 +04:00
|
|
|
std::string note_time = this->CurrentTime();
|
2015-05-24 01:08:35 +03:00
|
|
|
xml.StartElement("Note");
|
|
|
|
xml.Attribute("Name", *it);
|
|
|
|
xml.Element("Time", cmSystemTools::GetTime());
|
|
|
|
xml.Element("DateTime", note_time);
|
|
|
|
xml.StartElement("Text");
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream ifs(it->c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
if (ifs) {
|
2003-12-26 23:02:26 +03:00
|
|
|
std::string line;
|
2016-05-16 17:34:04 +03:00
|
|
|
while (cmSystemTools::GetLineFromStream(ifs, line)) {
|
2015-05-24 01:08:35 +03:00
|
|
|
xml.Content(line);
|
|
|
|
xml.Content("\n");
|
2003-12-26 23:02:26 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
ifs.close();
|
|
|
|
} else {
|
2015-05-24 01:08:35 +03:00
|
|
|
xml.Content("Problem reading file: " + *it + "\n");
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Problem reading file: "
|
|
|
|
<< *it << " while creating notes" << std::endl);
|
|
|
|
}
|
2015-05-24 01:08:35 +03:00
|
|
|
xml.EndElement(); // Text
|
|
|
|
xml.EndElement(); // Note
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-05-24 01:08:35 +03:00
|
|
|
xml.EndElement(); // Notes
|
|
|
|
xml.EndElement(); // Site
|
|
|
|
xml.EndDocument();
|
2003-12-26 23:02:26 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
int cmCTest::GenerateNotesFile(const VectorOfStrings& files)
|
2005-05-08 21:47:20 +04:00
|
|
|
{
|
|
|
|
cmGeneratedFileStream ofs;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->OpenOutputFile(this->CurrentTag, "Notes.xml", ofs)) {
|
2005-06-01 02:40:43 +04:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Cannot open notes file" << std::endl);
|
2005-05-08 21:47:20 +04:00
|
|
|
return 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-05-24 01:08:35 +03:00
|
|
|
cmXMLWriter xml(ofs);
|
|
|
|
this->GenerateCTestNotesOutput(xml, files);
|
2005-05-08 21:47:20 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-12-26 23:02:26 +03:00
|
|
|
int cmCTest::GenerateNotesFile(const char* cfiles)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cfiles) {
|
2003-12-26 23:02:26 +03:00
|
|
|
return 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2003-12-26 23:02:26 +03:00
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
VectorOfStrings files;
|
2003-12-26 23:02:26 +03:00
|
|
|
|
2005-06-01 01:32:40 +04:00
|
|
|
cmCTestLog(this, OUTPUT, "Create notes file" << std::endl);
|
2003-12-26 23:02:26 +03:00
|
|
|
|
|
|
|
files = cmSystemTools::SplitString(cfiles, ';');
|
2016-05-16 17:34:04 +03:00
|
|
|
if (files.empty()) {
|
2003-12-26 23:02:26 +03:00
|
|
|
return 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2003-12-26 23:02:26 +03:00
|
|
|
|
2005-05-08 21:47:20 +04:00
|
|
|
return this->GenerateNotesFile(files);
|
2003-12-26 23:02:26 +03:00
|
|
|
}
|
|
|
|
|
2016-05-26 22:58:51 +03:00
|
|
|
std::string cmCTest::Base64GzipEncodeFile(std::string const& file)
|
2011-02-18 20:11:51 +03:00
|
|
|
{
|
|
|
|
std::string tarFile = file + "_temp.tar.gz";
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string> files;
|
2011-02-18 20:11:51 +03:00
|
|
|
files.push_back(file);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::CreateTar(tarFile.c_str(), files,
|
|
|
|
cmSystemTools::TarCompressGZip, false)) {
|
2011-02-18 20:11:51 +03:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Error creating tar while "
|
2016-05-16 17:34:04 +03:00
|
|
|
"encoding file: "
|
|
|
|
<< file << std::endl);
|
2011-02-18 20:11:51 +03:00
|
|
|
return "";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-02-28 23:26:24 +03:00
|
|
|
std::string base64 = this->Base64EncodeFile(tarFile);
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::RemoveFile(tarFile);
|
2011-02-28 23:26:24 +03:00
|
|
|
return base64;
|
|
|
|
}
|
|
|
|
|
2016-05-26 22:58:51 +03:00
|
|
|
std::string cmCTest::Base64EncodeFile(std::string const& file)
|
2011-02-28 23:26:24 +03:00
|
|
|
{
|
2014-12-22 23:56:14 +03:00
|
|
|
size_t const len = cmSystemTools::FileLength(file);
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream ifs(file.c_str(), std::ios::in
|
2011-02-18 20:11:51 +03:00
|
|
|
#ifdef _WIN32
|
2016-05-16 17:34:04 +03:00
|
|
|
| std::ios::binary
|
2011-02-18 20:11:51 +03:00
|
|
|
#endif
|
2016-05-16 17:34:04 +03:00
|
|
|
);
|
|
|
|
unsigned char* file_buffer = new unsigned char[len + 1];
|
2011-02-18 20:11:51 +03:00
|
|
|
ifs.read(reinterpret_cast<char*>(file_buffer), len);
|
|
|
|
ifs.close();
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
unsigned char* encoded_buffer = new unsigned char[(len * 3) / 2 + 5];
|
2011-02-18 20:11:51 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
size_t const rlen = cmsysBase64_Encode(file_buffer, len, encoded_buffer, 1);
|
2011-02-18 20:11:51 +03:00
|
|
|
|
|
|
|
std::string base64 = "";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (size_t i = 0; i < rlen; i++) {
|
2011-02-18 20:11:51 +03:00
|
|
|
base64 += encoded_buffer[i];
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
delete[] file_buffer;
|
|
|
|
delete[] encoded_buffer;
|
2011-02-18 20:11:51 +03:00
|
|
|
|
|
|
|
return base64;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmCTest::SubmitExtraFiles(const VectorOfStrings& files)
|
2005-07-18 20:53:48 +04:00
|
|
|
{
|
2014-02-10 09:21:34 +04:00
|
|
|
VectorOfStrings::const_iterator it;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (it = files.begin(); it != files.end(); ++it) {
|
|
|
|
if (!cmSystemTools::FileExists(it->c_str())) {
|
2006-03-09 19:57:43 +03:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Cannot find extra file: "
|
2016-05-16 17:34:04 +03:00
|
|
|
<< *it << " to submit." << std::endl;);
|
2005-07-18 20:53:48 +04:00
|
|
|
return false;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
this->AddSubmitFile(PartExtraFiles, it->c_str());
|
|
|
|
}
|
2005-07-18 20:53:48 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCTest::SubmitExtraFiles(const char* cfiles)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cfiles) {
|
2005-07-18 20:53:48 +04:00
|
|
|
return 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-07-18 20:53:48 +04:00
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
VectorOfStrings files;
|
2005-07-18 20:53:48 +04:00
|
|
|
|
|
|
|
cmCTestLog(this, OUTPUT, "Submit extra files" << std::endl);
|
|
|
|
|
|
|
|
files = cmSystemTools::SplitString(cfiles, ';');
|
2016-05-16 17:34:04 +03:00
|
|
|
if (files.empty()) {
|
2005-07-18 20:53:48 +04:00
|
|
|
return 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-07-18 20:53:48 +04:00
|
|
|
|
|
|
|
return this->SubmitExtraFiles(files);
|
|
|
|
}
|
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
// for a -D argument convert the next argument into
|
2006-10-12 20:51:27 +04:00
|
|
|
// the proper list of dashboard steps via SetTest
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmCTest::AddTestsForDashboardType(std::string& targ)
|
2006-10-12 20:51:27 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (targ == "Experimental") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Start");
|
|
|
|
this->SetTest("Configure");
|
|
|
|
this->SetTest("Build");
|
|
|
|
this->SetTest("Test");
|
|
|
|
this->SetTest("Coverage");
|
|
|
|
this->SetTest("Submit");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ExperimentalStart") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Start");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ExperimentalUpdate") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Update");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ExperimentalConfigure") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Configure");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ExperimentalBuild") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Build");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ExperimentalTest") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Test");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ExperimentalMemCheck" || targ == "ExperimentalPurify") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("MemCheck");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ExperimentalCoverage") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Coverage");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ExperimentalSubmit") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Submit");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "Continuous") {
|
2006-10-12 20:51:27 +04:00
|
|
|
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");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ContinuousStart") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Start");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ContinuousUpdate") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Update");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ContinuousConfigure") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Configure");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ContinuousBuild") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Build");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ContinuousTest") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Test");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ContinuousMemCheck" || targ == "ContinuousPurify") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("MemCheck");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ContinuousCoverage") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Coverage");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "ContinuousSubmit") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
this->SetTest("Submit");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "Nightly") {
|
2006-10-12 20:51:27 +04:00
|
|
|
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");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "NightlyStart") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Start");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "NightlyUpdate") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Update");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "NightlyConfigure") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Configure");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "NightlyBuild") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Build");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "NightlyTest") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Test");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "NightlyMemCheck" || targ == "NightlyPurify") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("MemCheck");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "NightlyCoverage") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Coverage");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "NightlySubmit") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
this->SetTest("Submit");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "MemoryCheck") {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
|
|
|
this->SetTest("Start");
|
|
|
|
this->SetTest("Configure");
|
|
|
|
this->SetTest("Build");
|
|
|
|
this->SetTest("MemCheck");
|
|
|
|
this->SetTest("Coverage");
|
|
|
|
this->SetTest("Submit");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targ == "NightlyMemoryCheck") {
|
2006-10-12 20:51:27 +04:00
|
|
|
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");
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2006-10-12 20:51:27 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-10-12 20:51:27 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmCTest::ErrorMessageUnknownDashDValue(std::string& val)
|
2012-06-24 13:33:32 +04:00
|
|
|
{
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE,
|
2016-05-16 17:34:04 +03:00
|
|
|
"CTest -D called with incorrect option: " << val << std::endl);
|
2012-06-24 13:33:32 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestLog(
|
|
|
|
this, ERROR_MESSAGE, "Available options are:"
|
|
|
|
<< std::endl
|
|
|
|
<< " ctest -D Continuous" << std::endl
|
|
|
|
<< " ctest -D Continuous(Start|Update|Configure|Build)" << std::endl
|
|
|
|
<< " ctest -D Continuous(Test|Coverage|MemCheck|Submit)" << std::endl
|
|
|
|
<< " ctest -D Experimental" << std::endl
|
|
|
|
<< " ctest -D Experimental(Start|Update|Configure|Build)" << std::endl
|
|
|
|
<< " ctest -D Experimental(Test|Coverage|MemCheck|Submit)" << std::endl
|
|
|
|
<< " ctest -D Nightly" << std::endl
|
|
|
|
<< " ctest -D Nightly(Start|Update|Configure|Build)" << std::endl
|
|
|
|
<< " ctest -D Nightly(Test|Coverage|MemCheck|Submit)" << std::endl
|
|
|
|
<< " ctest -D NightlyMemoryCheck" << std::endl);
|
2012-06-24 13:33:32 +04:00
|
|
|
}
|
|
|
|
|
2006-03-09 19:57:43 +03:00
|
|
|
bool cmCTest::CheckArgument(const std::string& arg, const char* varg1,
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* varg2)
|
2005-07-18 19:46:45 +04:00
|
|
|
{
|
2009-05-11 21:58:19 +04:00
|
|
|
return (varg1 && arg == varg1) || (varg2 && arg == varg2);
|
2005-07-18 19:46:45 +04:00
|
|
|
}
|
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
// Processes one command line argument (and its arguments if any)
|
2006-10-12 20:51:27 +04:00
|
|
|
// for many simple options and then returns
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmCTest::HandleCommandLineArguments(size_t& i,
|
|
|
|
std::vector<std::string>& args,
|
2015-03-06 00:51:10 +03:00
|
|
|
std::string& errormsg)
|
2004-01-07 19:24:22 +03:00
|
|
|
{
|
2006-10-12 20:51:27 +04:00
|
|
|
std::string arg = args[i];
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "-F")) {
|
2009-08-27 18:37:30 +04:00
|
|
|
this->Failover = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "-j", "--parallel") && i < args.size() - 1) {
|
2008-07-03 17:31:33 +04:00
|
|
|
i++;
|
|
|
|
int plevel = atoi(args[i].c_str());
|
|
|
|
this->SetParallelLevel(plevel);
|
2013-05-17 17:26:57 +04:00
|
|
|
this->ParallelLevelSetInCli = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (arg.find("-j") == 0) {
|
2008-07-03 17:31:33 +04:00
|
|
|
int plevel = atoi(arg.substr(2).c_str());
|
|
|
|
this->SetParallelLevel(plevel);
|
2013-05-17 17:26:57 +04:00
|
|
|
this->ParallelLevelSetInCli = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "--repeat-until-fail")) {
|
|
|
|
if (i >= args.size() - 1) {
|
2015-03-06 00:51:10 +03:00
|
|
|
errormsg = "'--repeat-until-fail' requires an argument";
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-03-06 00:51:10 +03:00
|
|
|
i++;
|
|
|
|
long repeat = 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::StringToLong(args[i].c_str(), &repeat)) {
|
|
|
|
errormsg =
|
|
|
|
"'--repeat-until-fail' given non-integer value '" + args[i] + "'";
|
2015-03-06 00:51:10 +03:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-03-06 00:51:10 +03:00
|
|
|
this->RepeatTests = static_cast<int>(repeat);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (repeat > 1) {
|
2015-03-06 00:51:10 +03:00
|
|
|
this->RepeatUntilFail = true;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-01 00:08:11 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--test-load") && i < args.size() - 1) {
|
2015-06-09 15:50:44 +03:00
|
|
|
i++;
|
|
|
|
unsigned long load;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::StringToULong(args[i].c_str(), &load)) {
|
2015-06-09 15:50:44 +03:00
|
|
|
this->SetTestLoad(load);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2015-06-09 15:50:44 +03:00
|
|
|
cmCTestLog(this, WARNING,
|
|
|
|
"Invalid value for 'Test Load' : " << args[i] << std::endl);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-06-09 15:50:44 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--no-compress-output")) {
|
2009-12-16 22:50:16 +03:00
|
|
|
this->CompressTestOutput = false;
|
2011-05-26 22:42:41 +04:00
|
|
|
this->CompressMemCheckOutput = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-16 22:50:16 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--print-labels")) {
|
2010-08-31 18:41:23 +04:00
|
|
|
this->PrintLabels = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2010-08-31 18:41:23 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--http1.0")) {
|
2009-12-11 22:10:37 +03:00
|
|
|
this->UseHTTP10 = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-12-11 22:10:37 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--timeout") && i < args.size() - 1) {
|
2009-12-01 00:08:11 +03:00
|
|
|
i++;
|
|
|
|
double timeout = (double)atof(args[i].c_str());
|
|
|
|
this->GlobalTimeout = timeout;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2010-03-16 22:33:55 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--stop-time") && i < args.size() - 1) {
|
2010-03-16 22:33:55 +03:00
|
|
|
i++;
|
|
|
|
this->SetStopTime(args[i]);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "-C", "--build-config") &&
|
|
|
|
i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
i++;
|
2006-10-14 01:10:48 +04:00
|
|
|
this->SetConfigType(args[i].c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--debug")) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->Debug = true;
|
|
|
|
this->ShowLineNumbers = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "--track") && i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
i++;
|
|
|
|
this->SpecificTrack = args[i];
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "--show-line-numbers")) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->ShowLineNumbers = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "--no-label-summary")) {
|
2009-09-11 21:34:35 +04:00
|
|
|
this->LabelSummary = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "-Q", "--quiet")) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->Quiet = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "-V", "--verbose")) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->Verbose = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "-B")) {
|
2009-09-02 18:08:40 +04:00
|
|
|
this->BatchJobs = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "-VV", "--extra-verbose")) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->ExtraVerbose = true;
|
|
|
|
this->Verbose = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "--output-on-failure")) {
|
2009-01-18 21:03:32 +03:00
|
|
|
this->OutputTestOutputOnTestFailure = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-09-17 18:06:27 +03:00
|
|
|
if (this->CheckArgument(arg, "--test-output-size-passed") &&
|
2016-05-16 17:34:04 +03:00
|
|
|
i < args.size() - 1) {
|
2015-09-17 18:06:27 +03:00
|
|
|
i++;
|
|
|
|
long outputSize;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::StringToLong(args[i].c_str(), &outputSize)) {
|
|
|
|
if (cmCTestTestHandler* pCTestTestHandler =
|
|
|
|
static_cast<cmCTestTestHandler*>(this->TestingHandlers["test"])) {
|
2015-09-17 18:06:27 +03:00
|
|
|
pCTestTestHandler->SetTestOutputSizePassed(int(outputSize));
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2015-09-17 18:06:27 +03:00
|
|
|
cmCTestLog(this, WARNING,
|
2016-05-16 17:34:04 +03:00
|
|
|
"Invalid value for '--test-output-size-passed': " << args[i]
|
|
|
|
<< "\n");
|
2015-09-17 18:06:27 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-09-17 18:06:27 +03:00
|
|
|
if (this->CheckArgument(arg, "--test-output-size-failed") &&
|
2016-05-16 17:34:04 +03:00
|
|
|
i < args.size() - 1) {
|
2015-09-17 18:06:27 +03:00
|
|
|
i++;
|
|
|
|
long outputSize;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::StringToLong(args[i].c_str(), &outputSize)) {
|
|
|
|
if (cmCTestTestHandler* pCTestTestHandler =
|
|
|
|
static_cast<cmCTestTestHandler*>(this->TestingHandlers["test"])) {
|
2015-09-17 18:06:27 +03:00
|
|
|
pCTestTestHandler->SetTestOutputSizeFailed(int(outputSize));
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2015-09-17 18:06:27 +03:00
|
|
|
cmCTestLog(this, WARNING,
|
2016-05-16 17:34:04 +03:00
|
|
|
"Invalid value for '--test-output-size-failed': " << args[i]
|
|
|
|
<< "\n");
|
2015-09-17 18:06:27 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "-N", "--show-only")) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->ShowOnly = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-04-01 23:57:55 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "-O", "--output-log") && i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
i++;
|
|
|
|
this->SetOutputLogFileName(args[i].c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-01-07 19:24:22 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--tomorrow-tag")) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->TomorrowTag = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "--force-new-ctest-process")) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->ForceNewCTestProcess = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "-W", "--max-width") && i < args.size() - 1) {
|
2008-09-22 22:04:13 +04:00
|
|
|
i++;
|
|
|
|
this->MaxTestNameWidth = atoi(args[i].c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "--interactive-debug-mode") &&
|
|
|
|
i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
i++;
|
|
|
|
this->InteractiveDebugMode = cmSystemTools::IsOn(args[i].c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "--submit-index") && i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
i++;
|
|
|
|
this->SubmitIndex = atoi(args[i].c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->SubmitIndex < 0) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->SubmitIndex = 0;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--overwrite") && i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
i++;
|
2014-02-04 06:20:33 +04:00
|
|
|
this->AddCTestConfigurationOverwrite(args[i]);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "-A", "--add-notes") && i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->ProduceXML = true;
|
|
|
|
this->SetTest("Notes");
|
|
|
|
i++;
|
|
|
|
this->SetNotesFiles(args[i].c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-01-07 19:24:22 +03:00
|
|
|
|
2006-10-12 20:51:27 +04:00
|
|
|
// options that control what tests are run
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "-I", "--tests-information") &&
|
|
|
|
i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
i++;
|
|
|
|
this->GetHandler("test")->SetPersistentOption("TestsToRunInformation",
|
|
|
|
args[i].c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
this->GetHandler("memcheck")
|
|
|
|
->SetPersistentOption("TestsToRunInformation", args[i].c_str());
|
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "-U", "--union")) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->GetHandler("test")->SetPersistentOption("UseUnion", "true");
|
|
|
|
this->GetHandler("memcheck")->SetPersistentOption("UseUnion", "true");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "-R", "--tests-regex") && i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
i++;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->GetHandler("test")->SetPersistentOption("IncludeRegularExpression",
|
|
|
|
args[i].c_str());
|
|
|
|
this->GetHandler("memcheck")
|
|
|
|
->SetPersistentOption("IncludeRegularExpression", args[i].c_str());
|
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "-L", "--label-regex") && i < args.size() - 1) {
|
2009-02-10 22:24:24 +03:00
|
|
|
i++;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->GetHandler("test")->SetPersistentOption("LabelRegularExpression",
|
|
|
|
args[i].c_str());
|
|
|
|
this->GetHandler("memcheck")
|
|
|
|
->SetPersistentOption("LabelRegularExpression", args[i].c_str());
|
|
|
|
}
|
|
|
|
if (this->CheckArgument(arg, "-LE", "--label-exclude") &&
|
|
|
|
i < args.size() - 1) {
|
2009-02-10 22:24:24 +03:00
|
|
|
i++;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->GetHandler("test")->SetPersistentOption(
|
|
|
|
"ExcludeLabelRegularExpression", args[i].c_str());
|
|
|
|
this->GetHandler("memcheck")
|
|
|
|
->SetPersistentOption("ExcludeLabelRegularExpression", args[i].c_str());
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "-E", "--exclude-regex") &&
|
|
|
|
i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
i++;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->GetHandler("test")->SetPersistentOption("ExcludeRegularExpression",
|
|
|
|
args[i].c_str());
|
|
|
|
this->GetHandler("memcheck")
|
|
|
|
->SetPersistentOption("ExcludeRegularExpression", args[i].c_str());
|
|
|
|
}
|
2013-09-24 22:20:38 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--rerun-failed")) {
|
2013-09-24 22:20:38 +04:00
|
|
|
this->GetHandler("test")->SetPersistentOption("RerunFailed", "true");
|
|
|
|
this->GetHandler("memcheck")->SetPersistentOption("RerunFailed", "true");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-03-06 00:51:10 +03:00
|
|
|
return true;
|
2006-10-12 20:51:27 +04:00
|
|
|
}
|
2004-01-07 19:24:22 +03:00
|
|
|
|
2006-10-12 20:51:27 +04:00
|
|
|
// handle the -S -SR and -SP arguments
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmCTest::HandleScriptArguments(size_t& i, std::vector<std::string>& args,
|
|
|
|
bool& SRArgumentSpecified)
|
2006-10-12 20:51:27 +04:00
|
|
|
{
|
|
|
|
std::string arg = args[i];
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "-SP", "--script-new-process") &&
|
|
|
|
i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->RunConfigurationScript = true;
|
|
|
|
i++;
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestScriptHandler* ch =
|
|
|
|
static_cast<cmCTestScriptHandler*>(this->GetHandler("script"));
|
2006-10-12 20:51:27 +04:00
|
|
|
// -SR is an internal argument, -SP should be ignored when it is passed
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!SRArgumentSpecified) {
|
|
|
|
ch->AddConfigurationScript(args[i].c_str(), false);
|
2006-10-12 20:51:27 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "-SR", "--script-run") && i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
SRArgumentSpecified = true;
|
|
|
|
this->RunConfigurationScript = true;
|
|
|
|
i++;
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestScriptHandler* ch =
|
|
|
|
static_cast<cmCTestScriptHandler*>(this->GetHandler("script"));
|
|
|
|
ch->AddConfigurationScript(args[i].c_str(), true);
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "-S", "--script") && i < args.size() - 1) {
|
2006-10-12 20:51:27 +04:00
|
|
|
this->RunConfigurationScript = true;
|
|
|
|
i++;
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestScriptHandler* ch =
|
|
|
|
static_cast<cmCTestScriptHandler*>(this->GetHandler("script"));
|
2006-10-12 20:51:27 +04:00
|
|
|
// -SR is an internal argument, -S should be ignored when it is passed
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!SRArgumentSpecified) {
|
|
|
|
ch->AddConfigurationScript(args[i].c_str(), true);
|
2006-10-12 20:51:27 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-10-12 20:51:27 +04:00
|
|
|
}
|
2006-04-04 21:04:28 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmCTest::AddVariableDefinition(const std::string& arg)
|
2012-06-24 14:16:32 +04:00
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
std::string value;
|
2015-04-07 23:45:54 +03:00
|
|
|
cmState::CacheEntryType type = cmState::UNINITIALIZED;
|
2012-06-24 14:16:32 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmake::ParseCacheEntry(arg, name, value, type)) {
|
2012-06-24 14:16:32 +04:00
|
|
|
this->Definitions[name] = value;
|
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-06-24 14:16:32 +04:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-10-12 20:51:27 +04:00
|
|
|
// the main entry point of ctest, called from main
|
2016-05-16 17:34:04 +03:00
|
|
|
int cmCTest::Run(std::vector<std::string>& args, std::string* output)
|
2006-10-12 20:51:27 +04:00
|
|
|
{
|
|
|
|
const char* ctestExec = "ctest";
|
|
|
|
bool cmakeAndTest = false;
|
2012-06-24 13:51:08 +04:00
|
|
|
bool executeTests = true;
|
2006-10-12 20:51:27 +04:00
|
|
|
bool SRArgumentSpecified = false;
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2006-10-12 20:51:27 +04:00
|
|
|
// copy the command line
|
2015-02-12 22:47:53 +03:00
|
|
|
this->InitialCommandLineArguments.insert(
|
2016-05-16 17:34:04 +03:00
|
|
|
this->InitialCommandLineArguments.end(), args.begin(), args.end());
|
2005-06-01 01:32:40 +04:00
|
|
|
|
2006-10-12 20:51:27 +04:00
|
|
|
// process the command line arguments
|
2016-05-16 17:34:04 +03:00
|
|
|
for (size_t i = 1; i < args.size(); ++i) {
|
2006-10-12 20:51:27 +04:00
|
|
|
// handle the simple commandline arguments
|
2015-03-06 00:51:10 +03:00
|
|
|
std::string errormsg;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->HandleCommandLineArguments(i, args, errormsg)) {
|
2015-03-06 00:51:10 +03:00
|
|
|
cmSystemTools::Error(errormsg.c_str());
|
|
|
|
return 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-10-12 20:51:27 +04:00
|
|
|
|
|
|
|
// handle the script arguments -S -SR -SP
|
2016-05-16 17:34:04 +03:00
|
|
|
this->HandleScriptArguments(i, args, SRArgumentSpecified);
|
2006-10-12 20:51:27 +04:00
|
|
|
|
2016-06-21 03:40:55 +03:00
|
|
|
// --dashboard: handle a request for a dashboard
|
2006-10-12 20:51:27 +04:00
|
|
|
std::string arg = args[i];
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "-D", "--dashboard") && i < args.size() - 1) {
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ProduceXML = true;
|
2004-01-07 19:24:22 +03:00
|
|
|
i++;
|
|
|
|
std::string targ = args[i];
|
2012-06-24 13:33:32 +04:00
|
|
|
// AddTestsForDashboard parses the dashboard type and converts it
|
2010-07-02 18:58:00 +04:00
|
|
|
// into the separate stages
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->AddTestsForDashboardType(targ)) {
|
|
|
|
if (!this->AddVariableDefinition(targ)) {
|
2012-06-24 14:16:32 +04:00
|
|
|
this->ErrorMessageUnknownDashDValue(targ);
|
|
|
|
executeTests = false;
|
2004-07-30 01:15:22 +04:00
|
|
|
}
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-01-07 19:24:22 +03:00
|
|
|
|
2012-06-24 16:11:52 +04:00
|
|
|
// If it's not exactly -D, but it starts with -D, then try to parse out
|
|
|
|
// a variable definition from it, same as CMake does. Unsuccessful
|
|
|
|
// attempts are simply ignored since previous ctest versions ignore
|
|
|
|
// this too. (As well as many other unknown command line args.)
|
|
|
|
//
|
2016-05-16 17:34:04 +03:00
|
|
|
if (arg != "-D" && cmSystemTools::StringStartsWith(arg.c_str(), "-D")) {
|
2012-06-24 16:11:52 +04:00
|
|
|
std::string input = arg.substr(2);
|
|
|
|
this->AddVariableDefinition(input);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-06-24 16:11:52 +04:00
|
|
|
|
2016-06-21 03:40:55 +03:00
|
|
|
// --test-action: calls SetTest(<stage>, /*report=*/ false) to enable
|
|
|
|
// the corresponding stage
|
2016-06-21 03:37:55 +03:00
|
|
|
if (!this->HandleTestActionArgument(ctestExec, i, args)) {
|
|
|
|
executeTests = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2016-06-21 03:40:55 +03:00
|
|
|
// --test-model: what type of test model
|
2016-06-21 03:37:55 +03:00
|
|
|
if (!this->HandleTestModelArgument(ctestExec, i, args)) {
|
|
|
|
executeTests = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2016-06-21 03:40:55 +03:00
|
|
|
// --extra-submit
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--extra-submit") && i < args.size() - 1) {
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ProduceXML = true;
|
2005-07-18 20:53:48 +04:00
|
|
|
this->SetTest("Submit");
|
|
|
|
i++;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->SubmitExtraFiles(args[i].c_str())) {
|
2005-07-18 20:53:48 +04:00
|
|
|
return 0;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-10-12 20:51:27 +04:00
|
|
|
|
2004-01-07 19:24:22 +03:00
|
|
|
// --build-and-test options
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--build-and-test") && i < args.size() - 1) {
|
2004-01-07 19:24:22 +03:00
|
|
|
cmakeAndTest = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-10-12 20:51:27 +04:00
|
|
|
|
2016-06-21 03:40:55 +03:00
|
|
|
// --schedule-random
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CheckArgument(arg, "--schedule-random")) {
|
2009-10-29 22:30:12 +03:00
|
|
|
this->ScheduleType = "Random";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-10-29 22:30:12 +03:00
|
|
|
|
2006-10-12 20:51:27 +04:00
|
|
|
// pass the argument to all the handlers as well, but i may no longer be
|
|
|
|
// set to what it was originally so I'm not sure this is working as
|
|
|
|
// intended
|
2005-06-04 00:10:55 +04:00
|
|
|
cmCTest::t_TestingHandlers::iterator it;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (it = this->TestingHandlers.begin(); it != this->TestingHandlers.end();
|
|
|
|
++it) {
|
|
|
|
if (!it->second->ProcessCommandLineArguments(arg, i, args)) {
|
2006-03-09 19:57:43 +03:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE,
|
2016-05-16 17:34:04 +03:00
|
|
|
"Problem parsing command line arguments within a handler");
|
2005-06-04 00:10:55 +04:00
|
|
|
return 0;
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
} // the close of the for argument loop
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2016-06-21 03:40:55 +03:00
|
|
|
// handle CTEST_PARALLEL_LEVEL environment variable
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->ParallelLevelSetInCli) {
|
2016-07-08 00:54:05 +03:00
|
|
|
std::string parallel;
|
|
|
|
if (cmSystemTools::GetEnv("CTEST_PARALLEL_LEVEL", parallel)) {
|
|
|
|
int plevel = atoi(parallel.c_str());
|
2013-05-17 17:26:57 +04:00
|
|
|
this->SetParallelLevel(plevel);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-10-12 20:51:27 +04:00
|
|
|
|
2016-05-04 21:23:24 +03:00
|
|
|
// now what should cmake do? if --build-and-test was specified then
|
2006-10-12 20:51:27 +04:00
|
|
|
// we run the build and test handler and return
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmakeAndTest) {
|
2016-06-29 01:04:07 +03:00
|
|
|
return this->RunCMakeAndTest(output);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (executeTests) {
|
2016-06-29 01:04:07 +03:00
|
|
|
return this->ExecuteTests();
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2016-06-29 01:04:07 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2016-06-21 03:37:55 +03:00
|
|
|
bool cmCTest::HandleTestActionArgument(const char* ctestExec, size_t& i,
|
|
|
|
const std::vector<std::string>& args)
|
|
|
|
{
|
|
|
|
bool success = true;
|
|
|
|
std::string arg = args[i];
|
|
|
|
if (this->CheckArgument(arg, "-T", "--test-action") &&
|
|
|
|
(i < args.size() - 1)) {
|
|
|
|
this->ProduceXML = true;
|
|
|
|
i++;
|
|
|
|
if (!this->SetTest(args[i].c_str(), false)) {
|
|
|
|
success = false;
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "CTest -T called with incorrect option: "
|
|
|
|
<< args[i] << std::endl);
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Available options are:"
|
|
|
|
<< std::endl
|
|
|
|
<< " " << ctestExec << " -T all" << std::endl
|
|
|
|
<< " " << ctestExec << " -T start" << std::endl
|
|
|
|
<< " " << ctestExec << " -T update" << std::endl
|
|
|
|
<< " " << ctestExec << " -T configure" << std::endl
|
|
|
|
<< " " << ctestExec << " -T build" << std::endl
|
|
|
|
<< " " << ctestExec << " -T test" << std::endl
|
|
|
|
<< " " << ctestExec << " -T coverage" << std::endl
|
|
|
|
<< " " << ctestExec << " -T memcheck" << std::endl
|
|
|
|
<< " " << ctestExec << " -T notes" << std::endl
|
|
|
|
<< " " << ctestExec << " -T submit" << std::endl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCTest::HandleTestModelArgument(const char* ctestExec, size_t& i,
|
|
|
|
const std::vector<std::string>& args)
|
|
|
|
{
|
|
|
|
bool success = true;
|
|
|
|
std::string arg = args[i];
|
|
|
|
if (this->CheckArgument(arg, "-M", "--test-model") &&
|
|
|
|
(i < args.size() - 1)) {
|
|
|
|
i++;
|
|
|
|
std::string const& str = args[i];
|
|
|
|
if (cmSystemTools::LowerCase(str) == "nightly") {
|
|
|
|
this->SetTestModel(cmCTest::NIGHTLY);
|
|
|
|
} else if (cmSystemTools::LowerCase(str) == "continuous") {
|
|
|
|
this->SetTestModel(cmCTest::CONTINUOUS);
|
|
|
|
} else if (cmSystemTools::LowerCase(str) == "experimental") {
|
|
|
|
this->SetTestModel(cmCTest::EXPERIMENTAL);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2016-06-21 03:37:55 +03:00
|
|
|
success = false;
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "CTest -M called with incorrect option: "
|
|
|
|
<< str << std::endl);
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Available options are:"
|
|
|
|
<< std::endl
|
|
|
|
<< " " << ctestExec << " -M Continuous" << std::endl
|
|
|
|
<< " " << ctestExec << " -M Experimental" << std::endl
|
|
|
|
<< " " << ctestExec << " -M Nightly" << std::endl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2016-06-29 01:04:07 +03:00
|
|
|
int cmCTest::ExecuteTests()
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
// call process directory
|
|
|
|
if (this->RunConfigurationScript) {
|
|
|
|
if (this->ExtraVerbose) {
|
|
|
|
cmCTestLog(this, OUTPUT, "* Extra verbosity turned on" << std::endl);
|
|
|
|
}
|
|
|
|
cmCTest::t_TestingHandlers::iterator it;
|
|
|
|
for (it = this->TestingHandlers.begin(); it != this->TestingHandlers.end();
|
|
|
|
++it) {
|
|
|
|
it->second->SetVerbose(this->ExtraVerbose);
|
|
|
|
it->second->SetSubmitIndex(this->SubmitIndex);
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
2016-06-29 01:04:07 +03:00
|
|
|
this->GetHandler("script")->SetVerbose(this->Verbose);
|
|
|
|
res = this->GetHandler("script")->ProcessHandler();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (res != 0) {
|
|
|
|
cmCTestLog(this, DEBUG,
|
2016-06-29 01:04:07 +03:00
|
|
|
"running script failing returning: " << res << std::endl);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-06-29 01:04:07 +03:00
|
|
|
|
|
|
|
} else {
|
|
|
|
// What is this? -V seems to be the same as -VV,
|
|
|
|
// and Verbose is always on in this case
|
|
|
|
this->ExtraVerbose = this->Verbose;
|
|
|
|
this->Verbose = true;
|
|
|
|
cmCTest::t_TestingHandlers::iterator it;
|
|
|
|
for (it = this->TestingHandlers.begin(); it != this->TestingHandlers.end();
|
|
|
|
++it) {
|
|
|
|
it->second->SetVerbose(this->Verbose);
|
|
|
|
it->second->SetSubmitIndex(this->SubmitIndex);
|
|
|
|
}
|
|
|
|
std::string cwd = cmSystemTools::GetCurrentWorkingDirectory();
|
|
|
|
if (!this->Initialize(cwd.c_str(), CM_NULLPTR)) {
|
|
|
|
res = 12;
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Problem initializing the dashboard."
|
|
|
|
<< std::endl);
|
|
|
|
} else {
|
2016-06-21 03:43:42 +03:00
|
|
|
res = this->ProcessSteps();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-06-29 01:04:07 +03:00
|
|
|
this->Finalize();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-06-29 01:04:07 +03:00
|
|
|
if (res != 0) {
|
|
|
|
cmCTestLog(this, DEBUG,
|
|
|
|
"Running a test(s) failed returning : " << res << std::endl);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-06-29 01:04:07 +03:00
|
|
|
return res;
|
|
|
|
}
|
2006-10-12 20:51:27 +04:00
|
|
|
|
2016-06-29 01:04:07 +03:00
|
|
|
int cmCTest::RunCMakeAndTest(std::string* output)
|
|
|
|
{
|
|
|
|
this->Verbose = true;
|
|
|
|
cmCTestBuildAndTestHandler* handler =
|
|
|
|
static_cast<cmCTestBuildAndTestHandler*>(this->GetHandler("buildtest"));
|
|
|
|
int retv = handler->ProcessHandler();
|
|
|
|
*output = handler->GetOutput();
|
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
|
|
|
cmDynamicLoader::FlushCache();
|
|
|
|
#endif
|
|
|
|
if (retv != 0) {
|
|
|
|
cmCTestLog(this, DEBUG, "build and test failing returning: " << retv
|
|
|
|
<< std::endl);
|
|
|
|
}
|
|
|
|
return retv;
|
2004-01-07 19:24:22 +03:00
|
|
|
}
|
|
|
|
|
2004-01-07 03:13:55 +03:00
|
|
|
void cmCTest::SetNotesFiles(const char* notes)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!notes) {
|
2004-01-07 03:13:55 +03:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->NotesFiles = notes;
|
2004-01-07 03:13:55 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2016-05-26 22:58:51 +03:00
|
|
|
void cmCTest::SetStopTime(std::string const& time)
|
2010-03-16 22:33:55 +03:00
|
|
|
{
|
|
|
|
this->StopTime = time;
|
|
|
|
this->DetermineNextDayStop();
|
|
|
|
}
|
|
|
|
|
2007-06-12 17:40:36 +04:00
|
|
|
int cmCTest::ReadCustomConfigurationFileTree(const char* dir, cmMakefile* mf)
|
2004-01-26 21:57:26 +03:00
|
|
|
{
|
2006-04-09 15:45:18 +04:00
|
|
|
bool found = false;
|
2006-03-10 23:03:09 +03:00
|
|
|
VectorOfStrings dirs;
|
|
|
|
VectorOfStrings ndirs;
|
2006-04-09 15:45:18 +04:00
|
|
|
cmCTestLog(this, DEBUG, "* Read custom CTest configuration directory: "
|
2016-05-16 17:34:04 +03:00
|
|
|
<< dir << std::endl);
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2006-04-11 16:56:25 +04:00
|
|
|
std::string fname = dir;
|
|
|
|
fname += "/CTestCustom.cmake";
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestLog(this, DEBUG, "* Check for file: " << fname << std::endl);
|
|
|
|
if (cmSystemTools::FileExists(fname.c_str())) {
|
2006-04-11 16:56:25 +04:00
|
|
|
cmCTestLog(this, DEBUG, "* Read custom CTest configuration file: "
|
2016-05-16 17:34:04 +03:00
|
|
|
<< fname << std::endl);
|
2006-04-28 19:59:31 +04:00
|
|
|
bool erroroc = cmSystemTools::GetErrorOccuredFlag();
|
|
|
|
cmSystemTools::ResetErrorOccuredFlag();
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!mf->ReadListFile(fname.c_str()) ||
|
|
|
|
cmSystemTools::GetErrorOccuredFlag()) {
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Problem reading custom configuration: "
|
|
|
|
<< fname << std::endl);
|
|
|
|
}
|
2006-04-11 16:56:25 +04:00
|
|
|
found = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (erroroc) {
|
2006-04-28 19:59:31 +04:00
|
|
|
cmSystemTools::SetErrorOccured();
|
2006-03-22 00:39:50 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-22 00:39:50 +03:00
|
|
|
|
2007-06-12 17:40:36 +04:00
|
|
|
std::string rexpr = dir;
|
|
|
|
rexpr += "/CTestCustom.ctest";
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestLog(this, DEBUG, "* Check for file: " << rexpr << std::endl);
|
|
|
|
if (!found && cmSystemTools::FileExists(rexpr.c_str())) {
|
2007-06-12 17:40:36 +04:00
|
|
|
cmsys::Glob gl;
|
|
|
|
gl.RecurseOn();
|
|
|
|
gl.FindFiles(rexpr);
|
|
|
|
std::vector<std::string>& files = gl.GetFiles();
|
|
|
|
std::vector<std::string>::iterator fileIt;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (fileIt = files.begin(); fileIt != files.end(); ++fileIt) {
|
2007-06-12 17:40:36 +04:00
|
|
|
cmCTestLog(this, DEBUG, "* Read custom CTest configuration file: "
|
2016-05-16 17:34:04 +03:00
|
|
|
<< *fileIt << std::endl);
|
|
|
|
if (!mf->ReadListFile(fileIt->c_str()) ||
|
|
|
|
cmSystemTools::GetErrorOccuredFlag()) {
|
2007-06-12 17:40:36 +04:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE,
|
2016-05-16 17:34:04 +03:00
|
|
|
"Problem reading custom configuration: " << *fileIt
|
|
|
|
<< std::endl);
|
2004-01-26 21:57:26 +03:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
found = true;
|
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (found) {
|
2006-03-22 00:39:50 +03:00
|
|
|
cmCTest::t_TestingHandlers::iterator it;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (it = this->TestingHandlers.begin(); it != this->TestingHandlers.end();
|
|
|
|
++it) {
|
2006-04-09 15:45:18 +04:00
|
|
|
cmCTestLog(this, DEBUG,
|
2016-05-16 17:34:04 +03:00
|
|
|
"* Read custom CTest configuration vectors for handler: "
|
|
|
|
<< it->first << " (" << it->second << ")" << std::endl);
|
2006-03-22 00:39:50 +03:00
|
|
|
it->second->PopulateCustomVectors(mf);
|
2005-01-27 23:54:47 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2004-01-26 21:57:26 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
void cmCTest::PopulateCustomVector(cmMakefile* mf, const std::string& def,
|
2016-05-16 17:34:04 +03:00
|
|
|
std::vector<std::string>& vec)
|
2004-01-26 21:57:26 +03:00
|
|
|
{
|
|
|
|
const char* dval = mf->GetDefinition(def);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!dval) {
|
2004-01-26 21:57:26 +03:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-29 21:01:24 +04:00
|
|
|
cmCTestLog(this, DEBUG, "PopulateCustomVector: " << def << std::endl);
|
2004-01-26 22:41:29 +03:00
|
|
|
|
2011-10-26 08:19:46 +04:00
|
|
|
vec.clear();
|
2014-12-18 23:10:44 +03:00
|
|
|
cmSystemTools::ExpandListArgument(dval, vec);
|
2011-10-26 08:19:46 +04:00
|
|
|
|
2014-12-18 23:10:44 +03:00
|
|
|
for (std::vector<std::string>::const_iterator it = vec.begin();
|
2016-05-16 17:34:04 +03:00
|
|
|
it != vec.end(); ++it) {
|
2014-03-11 16:35:32 +04:00
|
|
|
cmCTestLog(this, DEBUG, " -- " << *it << std::endl);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-01-26 21:57:26 +03:00
|
|
|
}
|
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
void cmCTest::PopulateCustomInteger(cmMakefile* mf, const std::string& def,
|
2016-05-16 17:34:04 +03:00
|
|
|
int& val)
|
2005-01-26 18:10:41 +03:00
|
|
|
{
|
|
|
|
const char* dval = mf->GetDefinition(def);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!dval) {
|
2005-01-26 18:10:41 +03:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-01-26 18:10:41 +03:00
|
|
|
val = atoi(dval);
|
|
|
|
}
|
|
|
|
|
2004-10-19 20:48:57 +04:00
|
|
|
std::string cmCTest::GetShortPathToFile(const char* cfname)
|
2004-10-18 06:46:23 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
const std::string& sourceDir = cmSystemTools::CollapseFullPath(
|
|
|
|
this->GetCTestConfiguration("SourceDirectory"));
|
|
|
|
const std::string& buildDir = cmSystemTools::CollapseFullPath(
|
|
|
|
this->GetCTestConfiguration("BuildDirectory"));
|
2004-10-19 20:48:57 +04:00
|
|
|
std::string fname = cmSystemTools::CollapseFullPath(cfname);
|
2004-10-18 06:46:23 +04:00
|
|
|
|
|
|
|
// Find relative paths to both directories
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string srcRelpath =
|
|
|
|
cmSystemTools::RelativePath(sourceDir.c_str(), fname.c_str());
|
|
|
|
std::string bldRelpath =
|
|
|
|
cmSystemTools::RelativePath(buildDir.c_str(), fname.c_str());
|
2004-10-18 06:46:23 +04:00
|
|
|
|
|
|
|
// If any contains "." it is not parent directory
|
|
|
|
bool inSrc = srcRelpath.find("..") == srcRelpath.npos;
|
|
|
|
bool inBld = bldRelpath.find("..") == bldRelpath.npos;
|
|
|
|
// TODO: Handle files with .. in their name
|
|
|
|
|
2016-06-27 23:44:16 +03:00
|
|
|
std::string* res = CM_NULLPTR;
|
2004-10-18 06:46:23 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (inSrc && inBld) {
|
2004-10-18 06:46:23 +04:00
|
|
|
// If both have relative path with no dots, pick the shorter one
|
2016-05-16 17:34:04 +03:00
|
|
|
if (srcRelpath.size() < bldRelpath.size()) {
|
2004-10-18 06:46:23 +04:00
|
|
|
res = &srcRelpath;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2004-10-18 06:46:23 +04:00
|
|
|
res = &bldRelpath;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (inSrc) {
|
2004-10-18 06:46:23 +04:00
|
|
|
res = &srcRelpath;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (inBld) {
|
2004-10-18 06:46:23 +04:00
|
|
|
res = &bldRelpath;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-11 23:36:50 +04:00
|
|
|
|
|
|
|
std::string path;
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!res) {
|
2007-06-11 23:36:50 +04:00
|
|
|
path = fname;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2007-06-11 23:36:50 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(*res);
|
|
|
|
|
|
|
|
path = "./" + *res;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (path[path.size() - 1] == '/') {
|
|
|
|
path = path.substr(0, path.size() - 1);
|
2004-10-19 20:38:32 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-11 23:36:50 +04:00
|
|
|
|
|
|
|
cmsys::SystemTools::ReplaceString(path, ":", "_");
|
2007-06-12 19:11:07 +04:00
|
|
|
cmsys::SystemTools::ReplaceString(path, " ", "_");
|
2004-10-19 20:38:32 +04:00
|
|
|
return path;
|
2004-10-18 06:46:23 +04:00
|
|
|
}
|
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
std::string cmCTest::GetCTestConfiguration(const std::string& name)
|
2004-06-09 01:36:30 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->CTestConfigurationOverwrites.find(name) !=
|
|
|
|
this->CTestConfigurationOverwrites.end()) {
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->CTestConfigurationOverwrites[name];
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->CTestConfiguration[name];
|
2004-06-09 01:36:30 +04:00
|
|
|
}
|
|
|
|
|
2005-06-17 21:04:56 +04:00
|
|
|
void cmCTest::EmptyCTestConfiguration()
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTestConfiguration.clear();
|
2005-06-17 21:04:56 +04:00
|
|
|
}
|
|
|
|
|
2010-03-16 22:33:55 +03:00
|
|
|
void cmCTest::DetermineNextDayStop()
|
|
|
|
{
|
|
|
|
struct tm* lctime;
|
2016-06-27 23:44:16 +03:00
|
|
|
time_t current_time = time(CM_NULLPTR);
|
2010-03-16 22:33:55 +03:00
|
|
|
lctime = gmtime(¤t_time);
|
|
|
|
int gm_hour = lctime->tm_hour;
|
2010-03-18 20:51:40 +03:00
|
|
|
time_t gm_time = mktime(lctime);
|
2010-03-16 22:33:55 +03:00
|
|
|
lctime = localtime(¤t_time);
|
|
|
|
int local_hour = lctime->tm_hour;
|
|
|
|
|
2010-03-18 21:48:42 +03:00
|
|
|
int tzone_offset = local_hour - gm_hour;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (gm_time > current_time && gm_hour < local_hour) {
|
2010-03-18 20:51:40 +03:00
|
|
|
// this means gm_time is on the next day
|
2010-03-18 21:48:42 +03:00
|
|
|
tzone_offset -= 24;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (gm_time < current_time && gm_hour > local_hour) {
|
2010-03-18 21:48:42 +03:00
|
|
|
// this means gm_time is on the previous day
|
|
|
|
tzone_offset += 24;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2010-03-18 20:51:40 +03:00
|
|
|
|
|
|
|
tzone_offset *= 100;
|
2010-03-16 22:33:55 +03:00
|
|
|
char buf[1024];
|
2016-05-16 17:34:04 +03:00
|
|
|
sprintf(buf, "%d%02d%02d %s %+05i", lctime->tm_year + 1900,
|
|
|
|
lctime->tm_mon + 1, lctime->tm_mday, this->StopTime.c_str(),
|
2010-03-19 16:08:57 +03:00
|
|
|
tzone_offset);
|
2010-03-16 22:33:55 +03:00
|
|
|
|
|
|
|
time_t stop_time = curl_getdate(buf, ¤t_time);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (stop_time < current_time) {
|
2010-03-16 22:33:55 +03:00
|
|
|
this->NextDayStopTime = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2010-03-16 22:33:55 +03:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmCTest::SetCTestConfiguration(const char* name, const char* value,
|
2015-02-16 23:24:55 +03:00
|
|
|
bool suppress)
|
2005-05-02 22:15:29 +04:00
|
|
|
{
|
2015-02-16 23:24:55 +03:00
|
|
|
cmCTestOptionalLog(this, HANDLER_VERBOSE_OUTPUT, "SetCTestConfiguration:"
|
2016-05-16 17:34:04 +03:00
|
|
|
<< name << ":" << (value ? value : "(null)") << "\n",
|
|
|
|
suppress);
|
2007-06-14 21:05:09 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!name) {
|
2005-05-02 22:15:29 +04:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!value) {
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTestConfiguration.erase(name);
|
2005-05-02 22:15:29 +04:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTestConfiguration[name] = value;
|
2005-05-02 22:15:29 +04:00
|
|
|
}
|
|
|
|
|
2004-09-09 16:41:05 +04:00
|
|
|
std::string cmCTest::GetCurrentTag()
|
2004-04-14 00:32:29 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->CurrentTag;
|
2004-04-16 22:52:13 +04:00
|
|
|
}
|
|
|
|
|
2005-02-17 18:51:52 +03:00
|
|
|
std::string cmCTest::GetBinaryDir()
|
2004-04-16 22:52:13 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->BinaryDir;
|
2004-04-14 00:32:29 +04:00
|
|
|
}
|
2004-09-07 17:17:15 +04:00
|
|
|
|
2008-02-03 16:57:41 +03:00
|
|
|
std::string const& cmCTest::GetConfigType()
|
2004-09-07 17:17:15 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->ConfigType;
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
|
|
|
|
2004-09-09 16:41:05 +04:00
|
|
|
bool cmCTest::GetShowOnly()
|
2004-09-07 17:17:15 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->ShowOnly;
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
|
|
|
|
2008-09-22 22:04:13 +04:00
|
|
|
int cmCTest::GetMaxTestNameWidth() const
|
|
|
|
{
|
|
|
|
return this->MaxTestNameWidth;
|
|
|
|
}
|
|
|
|
|
2005-02-17 18:51:52 +03:00
|
|
|
void cmCTest::SetProduceXML(bool v)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ProduceXML = v;
|
2005-02-17 18:51:52 +03:00
|
|
|
}
|
|
|
|
|
2004-09-09 16:41:05 +04:00
|
|
|
bool cmCTest::GetProduceXML()
|
2004-09-07 17:17:15 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->ProduceXML;
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
2005-05-02 22:15:29 +04:00
|
|
|
|
2006-04-28 19:59:31 +04:00
|
|
|
const char* cmCTest::GetSpecificTrack()
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->SpecificTrack.empty()) {
|
2016-06-27 23:44:16 +03:00
|
|
|
return CM_NULLPTR;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-04-28 19:59:31 +04:00
|
|
|
return this->SpecificTrack.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCTest::SetSpecificTrack(const char* track)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!track) {
|
2006-04-28 19:59:31 +04:00
|
|
|
this->SpecificTrack = "";
|
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-04-28 19:59:31 +04:00
|
|
|
this->SpecificTrack = track;
|
|
|
|
}
|
|
|
|
|
2009-01-12 18:37:55 +03:00
|
|
|
void cmCTest::AddSubmitFile(Part part, const char* name)
|
2005-06-23 21:04:18 +04:00
|
|
|
{
|
2009-01-12 18:37:55 +03:00
|
|
|
this->Parts[part].SubmitFiles.push_back(name);
|
2005-06-23 21:04:18 +04:00
|
|
|
}
|
|
|
|
|
2014-02-04 06:20:33 +04:00
|
|
|
void cmCTest::AddCTestConfigurationOverwrite(const std::string& overStr)
|
2005-07-18 19:46:45 +04:00
|
|
|
{
|
2016-05-24 22:24:10 +03:00
|
|
|
size_t epos = overStr.find('=');
|
2016-05-16 17:34:04 +03:00
|
|
|
if (epos == overStr.npos) {
|
2005-07-18 19:46:45 +04:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE,
|
2016-05-16 17:34:04 +03:00
|
|
|
"CTest configuration overwrite specified in the wrong format."
|
|
|
|
<< std::endl
|
|
|
|
<< "Valid format is: --overwrite key=value" << std::endl
|
|
|
|
<< "The specified was: --overwrite " << overStr << std::endl);
|
2005-07-18 19:46:45 +04:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-07-18 19:46:45 +04:00
|
|
|
std::string key = overStr.substr(0, epos);
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string value = overStr.substr(epos + 1, overStr.npos);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTestConfigurationOverwrites[key] = value;
|
2005-07-18 19:46:45 +04:00
|
|
|
}
|
|
|
|
|
2006-10-14 01:10:48 +04:00
|
|
|
void cmCTest::SetConfigType(const char* ct)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
this->ConfigType = ct ? ct : "";
|
2006-10-14 01:10:48 +04:00
|
|
|
cmSystemTools::ReplaceString(this->ConfigType, ".\\", "");
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string confTypeEnv = "CMAKE_CONFIG_TYPE=" + this->ConfigType;
|
2014-11-23 13:05:50 +03:00
|
|
|
cmSystemTools::PutEnv(confTypeEnv);
|
2006-10-14 01:10:48 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmCTest::SetCTestConfigurationFromCMakeVariable(
|
|
|
|
cmMakefile* mf, const char* dconfig, const std::string& cmake_var,
|
|
|
|
bool suppress)
|
2005-05-02 22:15:29 +04:00
|
|
|
{
|
|
|
|
const char* ctvar;
|
|
|
|
ctvar = mf->GetDefinition(cmake_var);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!ctvar) {
|
2005-05-02 22:15:29 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-02-16 23:24:55 +03:00
|
|
|
cmCTestOptionalLog(this, HANDLER_VERBOSE_OUTPUT,
|
2016-05-16 17:34:04 +03:00
|
|
|
"SetCTestConfigurationFromCMakeVariable:"
|
|
|
|
<< dconfig << ":" << cmake_var << std::endl,
|
|
|
|
suppress);
|
2015-02-16 23:24:55 +03:00
|
|
|
this->SetCTestConfiguration(dconfig, ctvar, suppress);
|
2005-05-02 22:15:29 +04:00
|
|
|
return true;
|
|
|
|
}
|
2005-06-01 01:32:40 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmCTest::RunCommand(const char* command, std::string* stdOut,
|
|
|
|
std::string* stdErr, int* retVal, const char* dir,
|
|
|
|
double timeout)
|
2005-06-14 19:42:53 +04:00
|
|
|
{
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string> args = cmSystemTools::ParseArguments(command);
|
2005-06-14 19:42:53 +04:00
|
|
|
|
2016-05-27 00:05:30 +03:00
|
|
|
if (args.empty()) {
|
2005-06-14 19:42:53 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2005-06-14 19:42:53 +04:00
|
|
|
std::vector<const char*> argv;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator a = args.begin();
|
|
|
|
a != args.end(); ++a) {
|
2005-06-14 19:42:53 +04:00
|
|
|
argv.push_back(a->c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-06-27 23:44:16 +03:00
|
|
|
argv.push_back(CM_NULLPTR);
|
2005-06-14 19:42:53 +04:00
|
|
|
|
|
|
|
*stdOut = "";
|
|
|
|
*stdErr = "";
|
|
|
|
|
|
|
|
cmsysProcess* cp = cmsysProcess_New();
|
|
|
|
cmsysProcess_SetCommand(cp, &*argv.begin());
|
|
|
|
cmsysProcess_SetWorkingDirectory(cp, dir);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::GetRunCommandHideConsole()) {
|
2005-06-14 19:42:53 +04:00
|
|
|
cmsysProcess_SetOption(cp, cmsysProcess_Option_HideWindow, 1);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-14 19:42:53 +04:00
|
|
|
cmsysProcess_SetTimeout(cp, timeout);
|
|
|
|
cmsysProcess_Execute(cp);
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2005-06-14 19:42:53 +04:00
|
|
|
std::vector<char> tempOutput;
|
|
|
|
std::vector<char> tempError;
|
|
|
|
char* data;
|
|
|
|
int length;
|
|
|
|
int res;
|
|
|
|
bool done = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
while (!done) {
|
2016-06-27 23:44:16 +03:00
|
|
|
res = cmsysProcess_WaitForData(cp, &data, &length, CM_NULLPTR);
|
2016-05-16 17:34:04 +03:00
|
|
|
switch (res) {
|
|
|
|
case cmsysProcess_Pipe_STDOUT:
|
|
|
|
tempOutput.insert(tempOutput.end(), data, data + length);
|
|
|
|
break;
|
|
|
|
case cmsysProcess_Pipe_STDERR:
|
|
|
|
tempError.insert(tempError.end(), data, data + length);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
if ((res == cmsysProcess_Pipe_STDOUT || res == cmsysProcess_Pipe_STDERR) &&
|
|
|
|
this->ExtraVerbose) {
|
2005-06-14 19:42:53 +04:00
|
|
|
cmSystemTools::Stdout(data, length);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2016-06-27 23:44:16 +03:00
|
|
|
cmsysProcess_WaitForExit(cp, CM_NULLPTR);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!tempOutput.empty()) {
|
2006-03-22 00:01:50 +03:00
|
|
|
stdOut->append(&*tempOutput.begin(), tempOutput.size());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!tempError.empty()) {
|
2006-03-22 00:01:50 +03:00
|
|
|
stdErr->append(&*tempError.begin(), tempError.size());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2005-06-14 19:42:53 +04:00
|
|
|
bool result = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmsysProcess_GetState(cp) == cmsysProcess_State_Exited) {
|
|
|
|
if (retVal) {
|
2005-06-14 19:42:53 +04:00
|
|
|
*retVal = cmsysProcess_GetExitValue(cp);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
|
|
|
if (cmsysProcess_GetExitValue(cp) != 0) {
|
2005-06-14 19:42:53 +04:00
|
|
|
result = false;
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (cmsysProcess_GetState(cp) == cmsysProcess_State_Exception) {
|
2005-06-14 19:42:53 +04:00
|
|
|
const char* exception_str = cmsysProcess_GetExceptionString(cp);
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, exception_str << std::endl);
|
|
|
|
stdErr->append(exception_str, strlen(exception_str));
|
|
|
|
result = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (cmsysProcess_GetState(cp) == cmsysProcess_State_Error) {
|
2005-06-14 19:42:53 +04:00
|
|
|
const char* error_str = cmsysProcess_GetErrorString(cp);
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, error_str << std::endl);
|
|
|
|
stdErr->append(error_str, strlen(error_str));
|
|
|
|
result = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (cmsysProcess_GetState(cp) == cmsysProcess_State_Expired) {
|
2005-06-14 19:42:53 +04:00
|
|
|
const char* error_str = "Process terminated due to timeout\n";
|
|
|
|
cmCTestLog(this, ERROR_MESSAGE, error_str << std::endl);
|
|
|
|
stdErr->append(error_str, strlen(error_str));
|
|
|
|
result = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-09 19:57:43 +03:00
|
|
|
|
2005-06-14 19:42:53 +04:00
|
|
|
cmsysProcess_Delete(cp);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2005-06-01 01:32:40 +04:00
|
|
|
void cmCTest::SetOutputLogFileName(const char* name)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->OutputLogFile) {
|
2006-03-15 19:02:08 +03:00
|
|
|
delete this->OutputLogFile;
|
2016-06-27 23:44:16 +03:00
|
|
|
this->OutputLogFile = CM_NULLPTR;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (name) {
|
2006-03-15 19:02:08 +03:00
|
|
|
this->OutputLogFile = new cmGeneratedFileStream(name);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-01 01:32:40 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
static const char* cmCTestStringLogType[] = { "DEBUG",
|
|
|
|
"OUTPUT",
|
|
|
|
"HANDLER_OUTPUT",
|
|
|
|
"HANDLER_PROGRESS_OUTPUT",
|
|
|
|
"HANDLER_VERBOSE_OUTPUT",
|
|
|
|
"WARNING",
|
|
|
|
"ERROR_MESSAGE",
|
2016-06-27 23:44:16 +03:00
|
|
|
CM_NULLPTR };
|
2005-06-01 01:32:40 +04:00
|
|
|
|
|
|
|
#ifdef cerr
|
2016-05-16 17:34:04 +03:00
|
|
|
#undef cerr
|
2005-06-01 01:32:40 +04:00
|
|
|
#endif
|
|
|
|
#ifdef cout
|
2016-05-16 17:34:04 +03:00
|
|
|
#undef cout
|
2005-06-01 01:32:40 +04:00
|
|
|
#endif
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
#define cmCTestLogOutputFileLine(stream) \
|
|
|
|
if (this->ShowLineNumbers) { \
|
|
|
|
(stream) << std::endl << file << ":" << line << " "; \
|
|
|
|
}
|
2005-06-16 21:18:21 +04:00
|
|
|
|
2009-01-05 22:14:10 +03:00
|
|
|
void cmCTest::InitStreams()
|
|
|
|
{
|
|
|
|
// By default we write output to the process output streams.
|
|
|
|
this->StreamOut = &std::cout;
|
|
|
|
this->StreamErr = &std::cerr;
|
|
|
|
}
|
|
|
|
|
2015-02-16 23:24:55 +03:00
|
|
|
void cmCTest::Log(int logType, const char* file, int line, const char* msg,
|
|
|
|
bool suppress)
|
2005-06-01 01:32:40 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!msg || !*msg) {
|
2005-06-01 01:32:40 +04:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (suppress && logType != cmCTest::ERROR_MESSAGE) {
|
2015-02-16 23:24:55 +03:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (logType == cmCTest::HANDLER_PROGRESS_OUTPUT &&
|
|
|
|
(this->Debug || this->ExtraVerbose)) {
|
2015-07-03 23:52:23 +03:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->OutputLogFile) {
|
2005-06-01 01:32:40 +04:00
|
|
|
bool display = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (logType == cmCTest::DEBUG && !this->Debug) {
|
|
|
|
display = false;
|
|
|
|
}
|
|
|
|
if (logType == cmCTest::HANDLER_VERBOSE_OUTPUT && !this->Debug &&
|
|
|
|
!this->ExtraVerbose) {
|
|
|
|
display = false;
|
|
|
|
}
|
|
|
|
if (display) {
|
2006-03-15 19:02:08 +03:00
|
|
|
cmCTestLogOutputFileLine(*this->OutputLogFile);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (logType != this->OutputLogFileLastTag) {
|
2006-03-15 19:02:08 +03:00
|
|
|
*this->OutputLogFile << "[";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (logType >= OTHER || logType < 0) {
|
2006-03-15 19:02:08 +03:00
|
|
|
*this->OutputLogFile << "OTHER";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2006-03-15 19:02:08 +03:00
|
|
|
*this->OutputLogFile << cmCTestStringLogType[logType];
|
2005-06-01 01:32:40 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
*this->OutputLogFile << "] " << std::endl << std::flush;
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
*this->OutputLogFile << msg << std::flush;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (logType != this->OutputLogFileLastTag) {
|
2006-03-15 19:02:08 +03:00
|
|
|
*this->OutputLogFile << std::endl << std::flush;
|
|
|
|
this->OutputLogFileLastTag = logType;
|
2005-06-01 01:32:40 +04:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!this->Quiet) {
|
2009-01-05 22:14:10 +03:00
|
|
|
std::ostream& out = *this->StreamOut;
|
|
|
|
std::ostream& err = *this->StreamErr;
|
2016-05-16 17:34:04 +03:00
|
|
|
switch (logType) {
|
|
|
|
case DEBUG:
|
|
|
|
if (this->Debug) {
|
|
|
|
cmCTestLogOutputFileLine(out);
|
|
|
|
out << msg;
|
|
|
|
out.flush();
|
2005-06-01 01:32:40 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
break;
|
|
|
|
case OUTPUT:
|
|
|
|
case HANDLER_OUTPUT:
|
|
|
|
if (this->Debug || this->Verbose) {
|
|
|
|
cmCTestLogOutputFileLine(out);
|
|
|
|
out << msg;
|
|
|
|
out.flush();
|
2005-06-01 01:32:40 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
break;
|
|
|
|
case HANDLER_VERBOSE_OUTPUT:
|
|
|
|
if (this->Debug || this->ExtraVerbose) {
|
|
|
|
cmCTestLogOutputFileLine(out);
|
|
|
|
out << msg;
|
|
|
|
out.flush();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WARNING:
|
|
|
|
cmCTestLogOutputFileLine(err);
|
|
|
|
err << msg;
|
|
|
|
err.flush();
|
|
|
|
break;
|
|
|
|
case ERROR_MESSAGE:
|
|
|
|
cmCTestLogOutputFileLine(err);
|
|
|
|
err << msg;
|
|
|
|
err.flush();
|
|
|
|
cmSystemTools::SetErrorOccured();
|
|
|
|
break;
|
|
|
|
default:
|
2009-01-05 22:14:10 +03:00
|
|
|
cmCTestLogOutputFileLine(out);
|
|
|
|
out << msg;
|
|
|
|
out.flush();
|
2005-06-01 01:32:40 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-06-01 01:32:40 +04:00
|
|
|
}
|
|
|
|
|
2006-10-19 18:45:19 +04:00
|
|
|
double cmCTest::GetRemainingTimeAllowed()
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->GetHandler("script")) {
|
2006-10-19 18:45:19 +04:00
|
|
|
return 1.0e7;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-10-19 18:45:19 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestScriptHandler* ch =
|
|
|
|
static_cast<cmCTestScriptHandler*>(this->GetHandler("script"));
|
2006-10-19 18:45:19 +04:00
|
|
|
|
|
|
|
return ch->GetRemainingTimeAllowed();
|
|
|
|
}
|
2009-01-18 21:03:32 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmCTest::OutputTestErrors(std::vector<char> const& process_output)
|
2009-01-18 21:03:32 +03:00
|
|
|
{
|
|
|
|
std::string test_outputs("\n*** Test Failed:\n");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!process_output.empty()) {
|
2009-07-10 17:12:39 +04:00
|
|
|
test_outputs.append(&*process_output.begin(), process_output.size());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-01-18 21:03:32 +03:00
|
|
|
cmCTestLog(this, HANDLER_OUTPUT, test_outputs << std::endl << std::flush);
|
|
|
|
}
|
2011-05-26 22:42:41 +04:00
|
|
|
|
|
|
|
bool cmCTest::CompressString(std::string& str)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
z_stream strm;
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
unsigned char* in =
|
|
|
|
reinterpret_cast<unsigned char*>(const_cast<char*>(str.c_str()));
|
|
|
|
// zlib makes the guarantee that this is the maximum output size
|
|
|
|
int outSize =
|
|
|
|
static_cast<int>(static_cast<double>(str.size()) * 1.001 + 13.0);
|
2011-05-26 22:42:41 +04:00
|
|
|
unsigned char* out = new unsigned char[outSize];
|
|
|
|
|
|
|
|
strm.zalloc = Z_NULL;
|
|
|
|
strm.zfree = Z_NULL;
|
|
|
|
strm.opaque = Z_NULL;
|
2016-05-16 17:34:04 +03:00
|
|
|
ret = deflateInit(&strm, -1); // default compression level
|
|
|
|
if (ret != Z_OK) {
|
2011-09-01 23:56:53 +04:00
|
|
|
delete[] out;
|
2011-05-26 22:42:41 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-05-26 22:42:41 +04:00
|
|
|
|
2011-05-27 18:45:41 +04:00
|
|
|
strm.avail_in = static_cast<uInt>(str.size());
|
2011-05-26 22:42:41 +04:00
|
|
|
strm.next_in = in;
|
|
|
|
strm.avail_out = outSize;
|
|
|
|
strm.next_out = out;
|
|
|
|
ret = deflate(&strm, Z_FINISH);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (ret == Z_STREAM_ERROR || ret != Z_STREAM_END) {
|
2011-05-26 22:42:41 +04:00
|
|
|
cmCTestLog(this, ERROR_MESSAGE, "Error during gzip compression."
|
2016-05-16 17:34:04 +03:00
|
|
|
<< std::endl);
|
2011-09-01 23:56:53 +04:00
|
|
|
delete[] out;
|
2011-05-26 22:42:41 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-05-26 22:42:41 +04:00
|
|
|
|
|
|
|
(void)deflateEnd(&strm);
|
|
|
|
|
|
|
|
// Now base64 encode the resulting binary string
|
2016-05-16 17:34:04 +03:00
|
|
|
unsigned char* base64EncodedBuffer = new unsigned char[(outSize * 3) / 2];
|
2011-05-26 22:42:41 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
size_t rlen =
|
|
|
|
cmsysBase64_Encode(out, strm.total_out, base64EncodedBuffer, 1);
|
2011-05-26 22:42:41 +04:00
|
|
|
|
|
|
|
str = "";
|
|
|
|
str.append(reinterpret_cast<char*>(base64EncodedBuffer), rlen);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
delete[] base64EncodedBuffer;
|
|
|
|
delete[] out;
|
2011-05-26 22:42:41 +04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|