summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-18 12:50:32 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-18 13:29:17 (GMT)
commita2f2aeee2f4d4af1f25f4a5b86bacb8a81a7dec4 (patch)
treedd46c44fb1a2267149352ff1a95b09b72ce737f8 /Source/cmCTest.cxx
parent68f791cd06983e8fd375edfba74a9d821231e269 (diff)
downloadCMake-a2f2aeee2f4d4af1f25f4a5b86bacb8a81a7dec4.zip
CMake-a2f2aeee2f4d4af1f25f4a5b86bacb8a81a7dec4.tar.gz
CMake-a2f2aeee2f4d4af1f25f4a5b86bacb8a81a7dec4.tar.bz2
cmMakefile: Add wrapper for reading listfiles which have an origin.
Such files are delegates from other files, and so they set the CMAKE_PARENT_LIST_FILE to the originator. They also may set a policy scope.
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r--Source/cmCTest.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index cd2cd7c..91ae889 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -687,8 +687,7 @@ bool cmCTest::InitializeFromCommand(cmCTestStartCommand* command)
{
cmCTestOptionalLog(this, OUTPUT, " Reading ctest configuration file: "
<< fname << std::endl, command->ShouldBeQuiet());
- bool readit = mf->ReadListFile(mf->GetCurrentListFile(),
- fname.c_str() );
+ bool readit = mf->ReadDependentFile(fname.c_str());
if(!readit)
{
std::string m = "Could not find include file: ";