mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 22:31:18 -05:00
84 lines
2.7 KiB
C++
84 lines
2.7 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
#include <sstream>
|
|
|
|
#include "cmCTest.h"
|
|
#include "cmStringAlgorithms.h"
|
|
#include "cmSystemTools.h"
|
|
|
|
cmCTestGenericHandler::cmCTestGenericHandler(cmCTest* ctest)
|
|
: CTest(ctest)
|
|
{
|
|
this->SetVerbose(ctest->GetExtraVerbose());
|
|
this->SetSubmitIndex(ctest->GetSubmitIndex());
|
|
}
|
|
|
|
cmCTestGenericHandler::~cmCTestGenericHandler() = default;
|
|
|
|
bool cmCTestGenericHandler::StartResultingXML(cmCTest::Part part,
|
|
const char* name,
|
|
cmGeneratedFileStream& xofs)
|
|
{
|
|
if (!name) {
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
|
"Cannot create resulting XML file without providing the name"
|
|
<< std::endl);
|
|
return false;
|
|
}
|
|
std::ostringstream ostr;
|
|
ostr << name;
|
|
if (this->SubmitIndex > 0) {
|
|
ostr << "_" << this->SubmitIndex;
|
|
}
|
|
ostr << ".xml";
|
|
if (this->CTest->GetCurrentTag().empty()) {
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
|
"Current Tag empty, this may mean NightlyStartTime / "
|
|
"CTEST_NIGHTLY_START_TIME was not set correctly. Or "
|
|
"maybe you forgot to call ctest_start() before calling "
|
|
"ctest_configure()."
|
|
<< std::endl);
|
|
cmSystemTools::SetFatalErrorOccurred();
|
|
return false;
|
|
}
|
|
if (!this->CTest->OpenOutputFile(this->CTest->GetCurrentTag(), ostr.str(),
|
|
xofs, true)) {
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
|
"Cannot create resulting XML file: " << ostr.str()
|
|
<< std::endl);
|
|
return false;
|
|
}
|
|
this->CTest->AddSubmitFile(part, ostr.str());
|
|
return true;
|
|
}
|
|
|
|
bool cmCTestGenericHandler::StartLogFile(const char* name,
|
|
cmGeneratedFileStream& xofs)
|
|
{
|
|
if (!name) {
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
|
"Cannot create log file without providing the name"
|
|
<< std::endl);
|
|
return false;
|
|
}
|
|
std::ostringstream ostr;
|
|
ostr << "Last" << name;
|
|
if (this->SubmitIndex > 0) {
|
|
ostr << "_" << this->SubmitIndex;
|
|
}
|
|
if (!this->CTest->GetCurrentTag().empty()) {
|
|
ostr << "_" << this->CTest->GetCurrentTag();
|
|
}
|
|
ostr << ".log";
|
|
this->LogFileNames[name] =
|
|
cmStrCat(this->CTest->GetBinaryDir(), "/Testing/Temporary/", ostr.str());
|
|
if (!this->CTest->OpenOutputFile("Temporary", ostr.str(), xofs)) {
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
|
"Cannot create log file: " << ostr.str() << std::endl);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|