diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-03-20 16:27:09 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-03-20 16:27:09 (GMT) |
commit | aabd048825980cbd6b15b9d6d88dca67c317e19d (patch) | |
tree | 2e60ab188e3a23db6505dafd65ebe9e1dddbac06 | |
parent | 4e8802058168962a2e89cac5abc3278e506aa53c (diff) | |
download | CMake-aabd048825980cbd6b15b9d6d88dca67c317e19d.zip CMake-aabd048825980cbd6b15b9d6d88dca67c317e19d.tar.gz CMake-aabd048825980cbd6b15b9d6d88dca67c317e19d.tar.bz2 |
Fix problem with network paths
-rw-r--r-- | Source/cmCTest.cxx | 1 |
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 ); |