summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Miller <millerjv@crd.ge.com>2001-06-19 11:41:43 (GMT)
committerJim Miller <millerjv@crd.ge.com>2001-06-19 11:41:43 (GMT)
commitf5ee70af60acc6bd194dc17459a13a4c7125eb2f (patch)
treee613005e1ad51be2ddeb88bd1e7c06fe4fcf32fb
parente51844f83dd8f25269d6779e31e8b77b36b8b742 (diff)
downloadCMake-f5ee70af60acc6bd194dc17459a13a4c7125eb2f.zip
CMake-f5ee70af60acc6bd194dc17459a13a4c7125eb2f.tar.gz
CMake-f5ee70af60acc6bd194dc17459a13a4c7125eb2f.tar.bz2
ENH: Changed generated filename to DartTestfile.txt
-rw-r--r--Source/cmAddTestCommand.cxx2
-rw-r--r--Source/cmEnableTestingCommand.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmAddTestCommand.cxx b/Source/cmAddTestCommand.cxx
index 6dfec18..2f06b4f 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 305a518..8d9ab1c 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());