diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-10-12 15:11:43 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-10-12 15:11:43 (GMT) |
commit | bf0e67fea334cb0c0afdfec155d762b4891cadc9 (patch) | |
tree | 3ccd52b3508621b6a06887c4f3ff1dc396d26db5 /Source | |
parent | a5aa23d4e1e6e4cc7898d83fdd0c4d2d01e433f6 (diff) | |
download | CMake-bf0e67fea334cb0c0afdfec155d762b4891cadc9.zip CMake-bf0e67fea334cb0c0afdfec155d762b4891cadc9.tar.gz CMake-bf0e67fea334cb0c0afdfec155d762b4891cadc9.tar.bz2 |
Uncomment block in InitializeFromCommand (accidentally checked this change in)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmCTest.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index c359e9c..3466183 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -454,10 +454,10 @@ int cmCTest::Initialize(const char* binary_dir, bool new_tag, //---------------------------------------------------------------------- bool cmCTest::InitializeFromCommand(cmCTestCommand* command, bool first) { - //if ( !first && !this->CurrentTag.empty() ) - // { - // return true; - // } + if ( !first && !this->CurrentTag.empty() ) + { + return true; + } std::string src_dir = this->GetCTestConfiguration("SourceDirectory").c_str(); |