diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-28 21:36:48 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-28 21:36:48 (GMT) |
commit | ad380d6b8b029e08c3052b569dc425c893694d10 (patch) | |
tree | cde97f08c646aea8dbfc50e4653da01d442d9915 /Source/CTest | |
parent | 93f5712a7d4b47e3cdf508a2ee6fdc813b5d91b1 (diff) | |
download | CMake-ad380d6b8b029e08c3052b569dc425c893694d10.zip CMake-ad380d6b8b029e08c3052b569dc425c893694d10.tar.gz CMake-ad380d6b8b029e08c3052b569dc425c893694d10.tar.bz2 |
BUG: Fix the read custom files command and add a coverage test
Diffstat (limited to 'Source/CTest')
-rw-r--r-- | Source/CTest/cmCTestReadCustomFilesCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestReadCustomFilesCommand.cxx b/Source/CTest/cmCTestReadCustomFilesCommand.cxx index 3cf9a69..a381095 100644 --- a/Source/CTest/cmCTestReadCustomFilesCommand.cxx +++ b/Source/CTest/cmCTestReadCustomFilesCommand.cxx @@ -33,7 +33,7 @@ bool cmCTestReadCustomFilesCommand::InitialPass( this->CTest->ReadCustomConfigurationFileTree(dit->c_str()); } - return false; + return true; } |