ENH: Changed generated filename to DartTestfile.txt

This commit is contained in:
Jim Miller 2001-06-19 07:41:43 -04:00
parent e51844f83d
commit f5ee70af60
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ void cmAddTestCommand::FinalPass()
std::string fname;
fname = m_Makefile->GetStartOutputDirectory();
fname += "/";
fname += "CMakeTestfile.txt";
fname += "DartTestfile.txt";
// Open the output Testfile
std::ofstream fout(fname.c_str(), std::ios::app);

View File

@ -49,7 +49,7 @@ void cmEnableTestingCommand::FinalPass()
std::string fname;
fname = m_Makefile->GetStartOutputDirectory();
fname += "/";
fname += "CMakeTestfile.txt";
fname += "DartTestfile.txt";
cmSystemTools::MakeDirectory(m_Makefile->GetStartOutputDirectory());