Removed fork-and-continue option from ctest generated batch script entries

This commit is contained in:
Zach Mullen 2009-09-14 11:23:20 -04:00
parent 6a9a958591
commit 243bbae954
2 changed files with 1 additions and 2 deletions

View File

@ -29,7 +29,7 @@ void cmCTestBatchTestHandler::WriteBatchScript()
{ {
this->WriteSrunArgs(i->first, fout); this->WriteSrunArgs(i->first, fout);
this->WriteTestCommand(i->first, fout); this->WriteTestCommand(i->first, fout);
fout << "&\n"; //fork and continue fout << "\n";
} }
fout.flush(); fout.flush();
fout.close(); fout.close();

View File

@ -430,7 +430,6 @@ bool cmCTestRunTest::CreateProcess(double testTimeOut,
void cmCTestRunTest::WriteLogOutputTop(size_t completed, size_t total) void cmCTestRunTest::WriteLogOutputTop(size_t completed, size_t total)
{ {
cmCTestLog(this->CTest, HANDLER_OUTPUT, std::setw(getNumWidth(total)) cmCTestLog(this->CTest, HANDLER_OUTPUT, std::setw(getNumWidth(total))
<< completed << "/"); << completed << "/");
cmCTestLog(this->CTest, HANDLER_OUTPUT, std::setw(getNumWidth(total)) cmCTestLog(this->CTest, HANDLER_OUTPUT, std::setw(getNumWidth(total))