[Cmake-commits] [cmake-commits] hoffman committed cmCTestMultiProcessHandler.cxx 1.3 1.4

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Feb 10 14:19:52 EST 2009


Update of /cvsroot/CMake/CMake/Source/CTest
In directory public:/mounts/ram/cvs-serv649/CTest

Modified Files:
	cmCTestMultiProcessHandler.cxx 
Log Message:
BUG: partial fix for 8056 -W now works with -j


Index: cmCTestMultiProcessHandler.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CTest/cmCTestMultiProcessHandler.cxx,v
retrieving revision 1.3
retrieving revision 1.4
diff -C 2 -d -r1.3 -r1.4
*** cmCTestMultiProcessHandler.cxx	4 Jul 2008 14:28:22 -0000	1.3
--- cmCTestMultiProcessHandler.cxx	10 Feb 2009 19:19:50 -0000	1.4
***************
*** 84,87 ****
--- 84,94 ----
    newp->SetCommand(this->CTestCommand.c_str());
    std::vector<std::string> args;
+   cmOStringStream width;
+   if(this->CTest->GetMaxTestNameWidth())
+     {
+     args.push_back("-W");
+     width << this->CTest->GetMaxTestNameWidth();
+     args.push_back(width.str().c_str());
+     }
    args.push_back("-I");
    cmOStringStream strm;



More information about the Cmake-commits mailing list