Removed fork-and-continue option from ctest generated batch script entries
This commit is contained in:
parent
6a9a958591
commit
243bbae954
|
@ -29,7 +29,7 @@ void cmCTestBatchTestHandler::WriteBatchScript()
|
|||
{
|
||||
this->WriteSrunArgs(i->first, fout);
|
||||
this->WriteTestCommand(i->first, fout);
|
||||
fout << "&\n"; //fork and continue
|
||||
fout << "\n";
|
||||
}
|
||||
fout.flush();
|
||||
fout.close();
|
||||
|
|
|
@ -430,7 +430,6 @@ bool cmCTestRunTest::CreateProcess(double testTimeOut,
|
|||
|
||||
void cmCTestRunTest::WriteLogOutputTop(size_t completed, size_t total)
|
||||
{
|
||||
|
||||
cmCTestLog(this->CTest, HANDLER_OUTPUT, std::setw(getNumWidth(total))
|
||||
<< completed << "/");
|
||||
cmCTestLog(this->CTest, HANDLER_OUTPUT, std::setw(getNumWidth(total))
|
||||
|
|
Loading…
Reference in New Issue