diff options
author | Asit Dhal <dhal.asitk@gmail.com> | 2020-10-21 09:20:37 (GMT) |
---|---|---|
committer | Asit Dhal <dhal.asitk@gmail.com> | 2020-10-21 09:20:37 (GMT) |
commit | 3c324689a7a3e16b7f232b943efd4ded971467bf (patch) | |
tree | 4a424dbf0a4c4995e261cf480339c19f26cfe9dc /Source/CTest | |
parent | ef9030a94f1cd65b38daa636ab3b66b3268f8674 (diff) | |
download | CMake-3c324689a7a3e16b7f232b943efd4ded971467bf.zip CMake-3c324689a7a3e16b7f232b943efd4ded971467bf.tar.gz CMake-3c324689a7a3e16b7f232b943efd4ded971467bf.tar.bz2 |
include: refactor call sites of cmMakefile::ReadDependentFile
Fixes: #16773
Diffstat (limited to 'Source/CTest')
-rw-r--r-- | Source/CTest/cmCTestTestHandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestTestHandler.cxx b/Source/CTest/cmCTestTestHandler.cxx index 4d1a589..84bb791 100644 --- a/Source/CTest/cmCTestTestHandler.cxx +++ b/Source/CTest/cmCTestTestHandler.cxx @@ -122,7 +122,7 @@ bool cmCTestSubdirCommand(std::vector<std::string> const& args, readit = status.GetMakefile().ReadDependentFile(fname); } if (!readit) { - status.SetError(cmStrCat("Could not find include file: ", fname)); + status.SetError(cmStrCat("Could not load include file: ", fname)); return false; } } |