cmCTest: Rename "ProcessTests()" to "ProcessSteps()" and improve doxygen
This commit is contained in:
parent
7c87ab755c
commit
30c5f94c5b
|
@ -886,7 +886,7 @@ int cmCTest::ExecuteHandler(const char* shandler)
|
|||
return handler->ProcessHandler();
|
||||
}
|
||||
|
||||
int cmCTest::ProcessTests()
|
||||
int cmCTest::ProcessSteps()
|
||||
{
|
||||
int res = 0;
|
||||
bool notest = true;
|
||||
|
@ -2207,7 +2207,7 @@ int cmCTest::ExecuteTests()
|
|||
cmCTestLog(this, ERROR_MESSAGE, "Problem initializing the dashboard."
|
||||
<< std::endl);
|
||||
} else {
|
||||
res = this->ProcessTests();
|
||||
res = this->ProcessSteps();
|
||||
}
|
||||
this->Finalize();
|
||||
}
|
||||
|
|
|
@ -129,16 +129,21 @@ public:
|
|||
void Finalize();
|
||||
|
||||
/**
|
||||
* Process the tests. This is the main routine. The execution of the
|
||||
* tests should look like this:
|
||||
* Process the dashboard client steps.
|
||||
*
|
||||
* Steps are enabled using SetTest()
|
||||
*
|
||||
* The execution of the steps (or #Part) should look like this:
|
||||
*
|
||||
* ctest foo;
|
||||
* foo.Initialize();
|
||||
* // Set some things on foo
|
||||
* foo.ProcessTests();
|
||||
* foo.ProcessSteps();
|
||||
* foo.Finalize();
|
||||
*
|
||||
* \sa Initialize(), Finalize(), Part, PartInfo, SetTest()
|
||||
*/
|
||||
int ProcessTests();
|
||||
int ProcessSteps();
|
||||
|
||||
/*
|
||||
* A utility function that returns the nightly time
|
||||
|
|
Loading…
Reference in New Issue