Match width of ctest "Start xx: " line to line up with the end test line
This commit is contained in:
parent
940733997a
commit
b304186bc5
@ -81,7 +81,7 @@ void cmCTestMultiProcessHandler::StartTestProcess(int test)
|
||||
cmCTestRunTest* testRun = new cmCTestRunTest(this->TestHandler);
|
||||
testRun->SetIndex(test);
|
||||
testRun->SetTestProperties(this->Properties[test]);
|
||||
if(testRun->StartTest())
|
||||
if(testRun->StartTest(this->Total))
|
||||
{
|
||||
this->RunningTests.insert(testRun);
|
||||
}
|
||||
|
@ -297,9 +297,11 @@ void cmCTestRunTest::MemCheckPostProcess()
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Starts the execution of a test. Returns once it has started
|
||||
bool cmCTestRunTest::StartTest()
|
||||
bool cmCTestRunTest::StartTest(size_t total)
|
||||
{
|
||||
cmCTestLog(this->CTest, HANDLER_OUTPUT, " Start "
|
||||
cmCTestLog(this->CTest, HANDLER_OUTPUT, std::setw(2*getNumWidth(total) + 8)
|
||||
<< "Start "
|
||||
<< std::setw(getNumWidth(total))
|
||||
<< this->TestProperties->Index << ": "
|
||||
<< this->TestProperties->Name << std::endl);
|
||||
this->ComputeArguments();
|
||||
|
@ -46,7 +46,7 @@ public:
|
||||
bool CheckOutput();
|
||||
|
||||
//launch the test process, return whether it started correctly
|
||||
bool StartTest();
|
||||
bool StartTest(size_t total);
|
||||
//capture and report the test results
|
||||
bool EndTest(size_t completed, size_t total, bool started);
|
||||
//Called by ctest -N to log the command string
|
||||
|
Loading…
x
Reference in New Issue
Block a user