summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-03-20 16:27:09 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-03-20 16:27:09 (GMT)
commitaabd048825980cbd6b15b9d6d88dca67c317e19d (patch)
tree2e60ab188e3a23db6505dafd65ebe9e1dddbac06 /Source/cmCTest.cxx
parent4e8802058168962a2e89cac5abc3278e506aa53c (diff)
downloadCMake-aabd048825980cbd6b15b9d6d88dca67c317e19d.zip
CMake-aabd048825980cbd6b15b9d6d88dca67c317e19d.tar.gz
CMake-aabd048825980cbd6b15b9d6d88dca67c317e19d.tar.bz2
Fix problem with network paths
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r--Source/cmCTest.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 61243e3..de6a395 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -1695,6 +1695,7 @@ void cmCTest::ProcessDirectory(std::vector<std::string> &passed,
{
nwd = "." + nwd.substr(m_ToplevelPath.size(), nwd.npos);
}
+ cmSystemTools::ReplaceString(nwd, "\\", "/");
cres.m_Path = nwd;
cres.m_CompletionStatus = "Completed";
m_TestResults.push_back( cres );