From f5ee70af60acc6bd194dc17459a13a4c7125eb2f Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Tue, 19 Jun 2001 07:41:43 -0400 Subject: [PATCH] ENH: Changed generated filename to DartTestfile.txt --- Source/cmAddTestCommand.cxx | 2 +- Source/cmEnableTestingCommand.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmAddTestCommand.cxx b/Source/cmAddTestCommand.cxx index 6dfec180f..2f06b4fb5 100644 --- a/Source/cmAddTestCommand.cxx +++ b/Source/cmAddTestCommand.cxx @@ -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); diff --git a/Source/cmEnableTestingCommand.cxx b/Source/cmEnableTestingCommand.cxx index 305a518c2..8d9ab1c63 100644 --- a/Source/cmEnableTestingCommand.cxx +++ b/Source/cmEnableTestingCommand.cxx @@ -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());