summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-01-07 21:24:41 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-01-07 21:24:41 (GMT)
commita0afa50252c52650c1cbd63767f19a6e8690ed75 (patch)
tree55b8d8cc023f884f3e1081cafd7d3c93ed13c954 /Source/cmCTest.cxx
parentbaadc0a3614ad5f244f820ce8c006b56eb252083 (diff)
downloadCMake-a0afa50252c52650c1cbd63767f19a6e8690ed75.zip
CMake-a0afa50252c52650c1cbd63767f19a6e8690ed75.tar.gz
CMake-a0afa50252c52650c1cbd63767f19a6e8690ed75.tar.bz2
temp remove of optimization internal ctest use putenv causing trouble on cygwin
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r--Source/cmCTest.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 195a343..8e237f6 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -2821,6 +2821,7 @@ int cmCTest::RunMakeCommand(const char* command, std::string* output,
int cmCTest::RunTest(std::vector<const char*> argv, std::string* output, int *retVal)
{
std::string cmd = argv[0];
+#if 0
if(cmSystemTools::SameFile(argv[0], m_CTestSelf.c_str()))
{
cmCTest inst;
@@ -2840,7 +2841,7 @@ int cmCTest::RunTest(std::vector<const char*> argv, std::string* output, int *re
}
return cmsysProcess_State_Exited;
}
-
+#endif
std::vector<char> tempOutput;
if ( output )
{