diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-05-03 19:28:28 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-05-03 19:28:28 (GMT) |
commit | 2b29497de99411d7e468efab322ee1c4984b6467 (patch) | |
tree | 6b4bd39093b45c7882a7288e8f4cf977e1ade2d1 /Source/cmCTest.cxx | |
parent | d772fce254e6cfd0d77012f9a6201fc66074c27b (diff) | |
download | CMake-2b29497de99411d7e468efab322ee1c4984b6467.zip CMake-2b29497de99411d7e468efab322ee1c4984b6467.tar.gz CMake-2b29497de99411d7e468efab322ee1c4984b6467.tar.bz2 |
ENH: Add Site and BuildName, make sure that the rest of the default -S rule does not happen, and make sure that new tag will be created
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index fee43b5..c3147c4 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -269,7 +269,7 @@ cmCTest::~cmCTest() } } -int cmCTest::Initialize(const char* binary_dir) +int cmCTest::Initialize(const char* binary_dir, bool new_tag) { if(!m_InteractiveDebugMode) { @@ -338,7 +338,7 @@ int cmCTest::Initialize(const char* binary_dir) } tfin.close(); } - if ( tag.size() == 0 || m_Tests[cmCTest::START_TEST] || m_Tests[ALL_TEST]) + if ( tag.size() == 0 || new_tag || m_Tests[cmCTest::START_TEST] || m_Tests[ALL_TEST]) { //std::cout << "TestModel: " << this->GetTestModelString() << std::endl; //std::cout << "TestModel: " << m_TestModel << std::endl; |