Fix problem with network paths

This commit is contained in:
Andy Cedilnik 2003-03-20 11:27:09 -05:00
parent 4e88020581
commit aabd048825

View File

@ -1695,6 +1695,7 @@ void cmCTest::ProcessDirectory(std::vector<std::string> &passed,
{ {
nwd = "." + nwd.substr(m_ToplevelPath.size(), nwd.npos); nwd = "." + nwd.substr(m_ToplevelPath.size(), nwd.npos);
} }
cmSystemTools::ReplaceString(nwd, "\\", "/");
cres.m_Path = nwd; cres.m_Path = nwd;
cres.m_CompletionStatus = "Completed"; cres.m_CompletionStatus = "Completed";
m_TestResults.push_back( cres ); m_TestResults.push_back( cres );