ENH: Refactor cmCTest test part representation
This introduces the name "part" to denote a portion of the testing and submission process performed by ctest. We generalize the boolean indicating whether each part is enabled into a structure to which more information can be added later. We provide bi-directional mapping between part id and part names.
This commit is contained in:
parent
cccac773ce
commit
4b97fab34d
|
@ -260,11 +260,22 @@ cmCTest::cmCTest()
|
|||
this->DartVersion = 1;
|
||||
this->InitStreams();
|
||||
|
||||
int cc;
|
||||
for ( cc=0; cc < cmCTest::LAST_TEST; cc ++ )
|
||||
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");
|
||||
|
||||
// Fill the part name-to-id map.
|
||||
for(Part p = PartStart; p != PartCount; p = Part(p+1))
|
||||
{
|
||||
this->Tests[cc] = 0;
|
||||
this->PartMap[cmSystemTools::LowerCase(this->Parts[p].GetName())] = p;
|
||||
}
|
||||
|
||||
this->ShortDateFormat = true;
|
||||
|
||||
this->TestingHandlers["build"] = new cmCTestBuildHandler;
|
||||
|
@ -301,6 +312,21 @@ cmCTest::~cmCTest()
|
|||
this->SetOutputLogFileName(0);
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
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);
|
||||
if(i != this->PartMap.end())
|
||||
{
|
||||
return i->second;
|
||||
}
|
||||
|
||||
// The string does not name a valid part.
|
||||
return PartCount;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
int cmCTest::Initialize(const char* binary_dir, bool new_tag,
|
||||
bool verbose_tag)
|
||||
|
@ -401,16 +427,14 @@ int cmCTest::Initialize(const char* binary_dir, bool new_tag,
|
|||
std::string tagmode;
|
||||
if ( cmSystemTools::GetLineFromStream(tfin, tagmode) )
|
||||
{
|
||||
if ( tagmode.size() > 4 && !( this->Tests[cmCTest::START_TEST] ||
|
||||
this->Tests[ALL_TEST] ))
|
||||
if (tagmode.size() > 4 && !this->Parts[PartStart])
|
||||
{
|
||||
this->TestModel = cmCTest::GetTestModelFromString(tagmode.c_str());
|
||||
}
|
||||
}
|
||||
tfin.close();
|
||||
}
|
||||
if ( tag.size() == 0 || new_tag || this->Tests[cmCTest::START_TEST] ||
|
||||
this->Tests[ALL_TEST])
|
||||
if (tag.size() == 0 || new_tag || this->Parts[PartStart])
|
||||
{
|
||||
cmCTestLog(this, DEBUG, "TestModel: " << this->GetTestModelString()
|
||||
<< std::endl);
|
||||
|
@ -634,43 +658,17 @@ bool cmCTest::SetTest(const char* ttype, bool report)
|
|||
{
|
||||
if ( cmSystemTools::LowerCase(ttype) == "all" )
|
||||
{
|
||||
this->Tests[cmCTest::ALL_TEST] = 1;
|
||||
}
|
||||
else if ( cmSystemTools::LowerCase(ttype) == "start" )
|
||||
for(Part p = PartStart; p != PartCount; p = Part(p+1))
|
||||
{
|
||||
this->Tests[cmCTest::START_TEST] = 1;
|
||||
this->Parts[p].Enable();
|
||||
}
|
||||
else if ( cmSystemTools::LowerCase(ttype) == "update" )
|
||||
{
|
||||
this->Tests[cmCTest::UPDATE_TEST] = 1;
|
||||
return true;
|
||||
}
|
||||
else if ( cmSystemTools::LowerCase(ttype) == "configure" )
|
||||
Part p = this->GetPartFromName(ttype);
|
||||
if(p != PartCount)
|
||||
{
|
||||
this->Tests[cmCTest::CONFIGURE_TEST] = 1;
|
||||
}
|
||||
else if ( cmSystemTools::LowerCase(ttype) == "build" )
|
||||
{
|
||||
this->Tests[cmCTest::BUILD_TEST] = 1;
|
||||
}
|
||||
else if ( cmSystemTools::LowerCase(ttype) == "test" )
|
||||
{
|
||||
this->Tests[cmCTest::TEST_TEST] = 1;
|
||||
}
|
||||
else if ( cmSystemTools::LowerCase(ttype) == "coverage" )
|
||||
{
|
||||
this->Tests[cmCTest::COVERAGE_TEST] = 1;
|
||||
}
|
||||
else if ( cmSystemTools::LowerCase(ttype) == "memcheck" )
|
||||
{
|
||||
this->Tests[cmCTest::MEMCHECK_TEST] = 1;
|
||||
}
|
||||
else if ( cmSystemTools::LowerCase(ttype) == "notes" )
|
||||
{
|
||||
this->Tests[cmCTest::NOTES_TEST] = 1;
|
||||
}
|
||||
else if ( cmSystemTools::LowerCase(ttype) == "submit" )
|
||||
{
|
||||
this->Tests[cmCTest::SUBMIT_TEST] = 1;
|
||||
this->Parts[p].Enable();
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -681,7 +679,6 @@ bool cmCTest::SetTest(const char* ttype, bool report)
|
|||
}
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
@ -818,15 +815,11 @@ int cmCTest::ProcessTests()
|
|||
cmCTestLog(this, OUTPUT, "Start processing tests" << std::endl);
|
||||
}
|
||||
|
||||
for ( cc = 0; cc < LAST_TEST; cc ++ )
|
||||
for(Part p = PartStart; notest && p != PartCount; p = Part(p+1))
|
||||
{
|
||||
if ( this->Tests[cc] )
|
||||
{
|
||||
notest = false;
|
||||
break;
|
||||
notest = !this->Parts[p];
|
||||
}
|
||||
}
|
||||
if (( this->Tests[UPDATE_TEST] || this->Tests[ALL_TEST] ) &&
|
||||
if (this->Parts[PartUpdate] &&
|
||||
(this->GetRemainingTimeAllowed() - 120 > 0))
|
||||
{
|
||||
cmCTestGenericHandler* uphandler = this->GetHandler("update");
|
||||
|
@ -842,7 +835,7 @@ int cmCTest::ProcessTests()
|
|||
{
|
||||
return 0;
|
||||
}
|
||||
if (( this->Tests[CONFIGURE_TEST] || this->Tests[ALL_TEST] )&&
|
||||
if (this->Parts[PartConfigure] &&
|
||||
(this->GetRemainingTimeAllowed() - 120 > 0))
|
||||
{
|
||||
if (this->GetHandler("configure")->ProcessHandler() < 0)
|
||||
|
@ -850,7 +843,7 @@ int cmCTest::ProcessTests()
|
|||
res |= cmCTest::CONFIGURE_ERRORS;
|
||||
}
|
||||
}
|
||||
if (( this->Tests[BUILD_TEST] || this->Tests[ALL_TEST] )&&
|
||||
if (this->Parts[PartBuild] &&
|
||||
(this->GetRemainingTimeAllowed() - 120 > 0))
|
||||
{
|
||||
this->UpdateCTestConfiguration();
|
||||
|
@ -859,7 +852,7 @@ int cmCTest::ProcessTests()
|
|||
res |= cmCTest::BUILD_ERRORS;
|
||||
}
|
||||
}
|
||||
if (( this->Tests[TEST_TEST] || this->Tests[ALL_TEST] || notest ) &&
|
||||
if ((this->Parts[PartTest] || notest) &&
|
||||
(this->GetRemainingTimeAllowed() - 120 > 0))
|
||||
{
|
||||
this->UpdateCTestConfiguration();
|
||||
|
@ -868,7 +861,7 @@ int cmCTest::ProcessTests()
|
|||
res |= cmCTest::TEST_ERRORS;
|
||||
}
|
||||
}
|
||||
if (( this->Tests[COVERAGE_TEST] || this->Tests[ALL_TEST] ) &&
|
||||
if (this->Parts[PartCoverage] &&
|
||||
(this->GetRemainingTimeAllowed() - 120 > 0))
|
||||
{
|
||||
this->UpdateCTestConfiguration();
|
||||
|
@ -877,7 +870,7 @@ int cmCTest::ProcessTests()
|
|||
res |= cmCTest::COVERAGE_ERRORS;
|
||||
}
|
||||
}
|
||||
if (( this->Tests[MEMCHECK_TEST] || this->Tests[ALL_TEST] )&&
|
||||
if (this->Parts[PartMemCheck] &&
|
||||
(this->GetRemainingTimeAllowed() - 120 > 0))
|
||||
{
|
||||
this->UpdateCTestConfiguration();
|
||||
|
@ -906,12 +899,12 @@ int cmCTest::ProcessTests()
|
|||
this->NotesFiles += ";";
|
||||
}
|
||||
this->NotesFiles += fullname;
|
||||
this->Tests[NOTES_TEST] = 1;
|
||||
this->Parts[PartNotes].Enable();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if ( this->Tests[NOTES_TEST] || this->Tests[ALL_TEST] )
|
||||
if (this->Parts[PartNotes])
|
||||
{
|
||||
this->UpdateCTestConfiguration();
|
||||
if ( this->NotesFiles.size() )
|
||||
|
@ -919,7 +912,7 @@ int cmCTest::ProcessTests()
|
|||
this->GenerateNotesFile(this->NotesFiles.c_str());
|
||||
}
|
||||
}
|
||||
if ( this->Tests[SUBMIT_TEST] || this->Tests[ALL_TEST] )
|
||||
if (this->Parts[PartSubmit])
|
||||
{
|
||||
this->UpdateCTestConfiguration();
|
||||
if (this->GetHandler("submit")->ProcessHandler() < 0)
|
||||
|
|
|
@ -50,6 +50,40 @@ class cmCTestScriptHandler;
|
|||
class cmCTest
|
||||
{
|
||||
public:
|
||||
/** Enumerate parts of the testing and submission process. */
|
||||
enum Part
|
||||
{
|
||||
PartStart,
|
||||
PartUpdate,
|
||||
PartConfigure,
|
||||
PartBuild,
|
||||
PartTest,
|
||||
PartCoverage,
|
||||
PartMemCheck,
|
||||
PartSubmit,
|
||||
PartNotes,
|
||||
PartCount // Update names in constructor when adding a part
|
||||
};
|
||||
|
||||
/** Representation of one part. */
|
||||
struct PartInfo
|
||||
{
|
||||
PartInfo(): Enabled(false) {}
|
||||
|
||||
void SetName(const char* name) { this->Name = name; }
|
||||
const char* GetName() const { return this->Name.c_str(); }
|
||||
|
||||
void Enable() { this->Enabled = true; }
|
||||
operator bool() const { return this->Enabled; }
|
||||
private:
|
||||
bool Enabled;
|
||||
std::string Name;
|
||||
};
|
||||
|
||||
/** Get a testing part id from its string name. Returns PartCount
|
||||
if the string does not name a valid part. */
|
||||
Part GetPartFromName(const char* name);
|
||||
|
||||
typedef std::vector<cmStdString> VectorOfStrings;
|
||||
typedef std::set<cmStdString> SetOfStrings;
|
||||
|
||||
|
@ -356,28 +390,15 @@ private:
|
|||
|
||||
bool ShowOnly;
|
||||
|
||||
enum {
|
||||
FIRST_TEST = 0,
|
||||
UPDATE_TEST = 1,
|
||||
START_TEST = 2,
|
||||
CONFIGURE_TEST = 3,
|
||||
BUILD_TEST = 4,
|
||||
TEST_TEST = 5,
|
||||
COVERAGE_TEST = 6,
|
||||
MEMCHECK_TEST = 7,
|
||||
SUBMIT_TEST = 8,
|
||||
NOTES_TEST = 9,
|
||||
ALL_TEST = 10,
|
||||
LAST_TEST = 11
|
||||
};
|
||||
|
||||
//! Map of configuration properties
|
||||
typedef std::map<cmStdString, cmStdString> CTestConfigurationMap;
|
||||
|
||||
std::string CTestConfigFile;
|
||||
CTestConfigurationMap CTestConfiguration;
|
||||
CTestConfigurationMap CTestConfigurationOverwrites;
|
||||
int Tests[LAST_TEST];
|
||||
PartInfo Parts[PartCount];
|
||||
typedef std::map<cmStdString, Part> PartMapType;
|
||||
PartMapType PartMap;
|
||||
|
||||
std::string CurrentTag;
|
||||
bool TomorrowTag;
|
||||
|
|
Loading…
Reference in New Issue