[Cmake-commits] [cmake-commits] zach.mullen committed cmCTestMultiProcessHandler.cxx 1.37 1.38

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Feb 3 16:32:28 EST 2010


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

Modified Files:
	cmCTestMultiProcessHandler.cxx 
Log Message:
Re-enabled Scheduler test and fixed the underlying problem.


Index: cmCTestMultiProcessHandler.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CTest/cmCTestMultiProcessHandler.cxx,v
retrieving revision 1.37
retrieving revision 1.38
diff -C 2 -d -r1.37 -r1.38
*** cmCTestMultiProcessHandler.cxx	10 Dec 2009 14:39:19 -0000	1.37
--- cmCTestMultiProcessHandler.cxx	3 Feb 2010 21:32:26 -0000	1.38
***************
*** 326,330 ****
      + "/Testing/Temporary/CTestCostData.txt";
    std::fstream fout;
!   fout.open(fname.c_str(), std::ios::app);
    fout << index << " " << cost << "\n";
    fout.close();
--- 326,330 ----
      + "/Testing/Temporary/CTestCostData.txt";
    std::fstream fout;
!   fout.open(fname.c_str(), std::ios::out | std::ios::app);
    fout << index << " " << cost << "\n";
    fout.close();



More information about the Cmake-commits mailing list