[cmake-commits] david.cole committed cmCTest.cxx 1.322 1.323
cmake-commits at cmake.org
cmake-commits at cmake.org
Tue Jun 12 11:11:09 EDT 2007
Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv12226/Source
Modified Files:
cmCTest.cxx
Log Message:
BUG: Never return a string containing a space " " from cmCTest::GetShortPathToFile - replace them with "_". DART cannot construct valid file names during dashboard rollup with space " " in the short path.
Index: cmCTest.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmCTest.cxx,v
retrieving revision 1.322
retrieving revision 1.323
diff -u -d -r1.322 -r1.323
--- cmCTest.cxx 12 Jun 2007 13:40:36 -0000 1.322
+++ cmCTest.cxx 12 Jun 2007 15:11:07 -0000 1.323
@@ -2219,6 +2219,7 @@
}
cmsys::SystemTools::ReplaceString(path, ":", "_");
+ cmsys::SystemTools::ReplaceString(path, " ", "_");
return path;
}
More information about the Cmake-commits
mailing list