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->WriteTestCommand(i->first, fout);
fout << "&\n"; //fork and continue
fout << "\n";
}
fout.flush();
fout.close();

View File

@ -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))