Browse Source

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.

David Cole 19 years ago
parent
commit
07837ebe3a
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Source/cmCTest.cxx

+ 1 - 0
Source/cmCTest.cxx

@@ -2219,6 +2219,7 @@ std::string cmCTest::GetShortPathToFile(const char* cfname)
     }
 
   cmsys::SystemTools::ReplaceString(path, ":", "_");
+  cmsys::SystemTools::ReplaceString(path, " ", "_");
   return path;
 }