diff options
author | Ken Martin <ken.martin@kitware.com> | 2004-05-10 14:20:34 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2004-05-10 14:20:34 (GMT) |
commit | 40e54ded44342d5c640cd81b68c3cb1292a5e861 (patch) | |
tree | 05e6a2db72e06e0213ae07e9d1699b4dbe0ba92d /Source | |
parent | 6bcdfdca9259bbe61c59426c6ca04180de415cc8 (diff) | |
download | CMake-40e54ded44342d5c640cd81b68c3cb1292a5e861.zip CMake-40e54ded44342d5c640cd81b68c3cb1292a5e861.tar.gz CMake-40e54ded44342d5c640cd81b68c3cb1292a5e861.tar.bz2 |
fix for config type passing between ctests
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmCTest.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 02e12c3..20b5b16 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -3332,6 +3332,7 @@ int cmCTest::RunTest(std::vector<const char*> argv, std::string* output, int *re if(cmSystemTools::SameFile(argv[0], m_CTestSelf.c_str())) { cmCTest inst; + inst.m_ConfigType = m_ConfigType; std::vector<std::string> args; for(unsigned int i =0; i < argv.size(); ++i) { |