summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-05-03 13:40:16 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-05-03 13:40:16 (GMT)
commitde57a86298c761bd98f5f5e96a11fd1f51a99b70 (patch)
treed37b93421dcabd393b22dbc58e3fe9e09164264c /Source/cmCTest.h
parentc7feef30e2655bbb433050bb32f11dd4b053f227 (diff)
downloadCMake-de57a86298c761bd98f5f5e96a11fd1f51a99b70.zip
CMake-de57a86298c761bd98f5f5e96a11fd1f51a99b70.tar.gz
CMake-de57a86298c761bd98f5f5e96a11fd1f51a99b70.tar.bz2
ENH: Cleanups
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r--Source/cmCTest.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h
index 25f8492..5e6652f 100644
--- a/Source/cmCTest.h
+++ b/Source/cmCTest.h
@@ -94,8 +94,8 @@ public:
std::string GetTestModelString();
static int GetTestModelFromString(const char* str);
static std::string CleanString(const std::string& str);
- std::string GetDartConfiguration(const char *name);
- void SetDartConfiguration(const char *name, const char* value);
+ std::string GetCTestConfiguration(const char *name);
+ void SetCTestConfiguration(const char *name, const char* value);
/**
* constructor and destructor
@@ -191,7 +191,7 @@ public:
/*
* Set the CTest variable from CMake variable
*/
- bool SetDartConfigurationFromCMakeVariable(cmMakefile* mf, const char* dconfig, const char* cmake_var);
+ bool SetCTestConfigurationFromCMakeVariable(cmMakefile* mf, const char* dconfig, const char* cmake_var);
//! Make string safe to be send as an URL
static std::string MakeURLSafe(const std::string&);
@@ -229,10 +229,10 @@ private:
};
//! Map of configuration properties
- typedef std::map<cmStdString, cmStdString> tm_DartConfigurationMap;
+ typedef std::map<cmStdString, cmStdString> tm_CTestConfigurationMap;
std::string m_CTestConfigFile;
- tm_DartConfigurationMap m_DartConfiguration;
+ tm_CTestConfigurationMap m_CTestConfiguration;
int m_Tests[LAST_TEST];
std::string m_CurrentTag;
@@ -279,7 +279,7 @@ private:
bool UpdateCTestConfiguration();
//! Create not from files.
- int GenerateDartNotesOutput(std::ostream& os, const tm_VectorOfStrings& files);
+ int GenerateCTestNotesOutput(std::ostream& os, const tm_VectorOfStrings& files);
///! Run CMake and build a test and then run it as a single test.
int RunCMakeAndTest(std::string* output);