summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CommandLine/RunCMakeTest.cmake
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2015-07-21 21:18:53 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2015-07-23 19:33:10 (GMT)
commit594bafe52773c940fc3fb9cd9022a4d1a3a194c7 (patch)
tree9ba8747bc0a23a46abe7035e8f507b647573fbd9 /Tests/RunCMake/CommandLine/RunCMakeTest.cmake
parent265b9db7c2c865c5aad821bf9a377ea84dfe431e (diff)
downloadCMake-594bafe52773c940fc3fb9cd9022a4d1a3a194c7.zip
CMake-594bafe52773c940fc3fb9cd9022a4d1a3a194c7.tar.gz
CMake-594bafe52773c940fc3fb9cd9022a4d1a3a194c7.tar.bz2
cmake: add --trace-expand option
The --trace option is helpful, but sometimes, what you're looking for is deep under many layers of function calls and figuring out what instance of the function call you're looking at is tedious to determine (usually involving patching and message()). Instead, add a --trace-expand option to trace while expanding commands into what CMake actually sees.
Diffstat (limited to 'Tests/RunCMake/CommandLine/RunCMakeTest.cmake')
-rw-r--r--Tests/RunCMake/CommandLine/RunCMakeTest.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/RunCMake/CommandLine/RunCMakeTest.cmake b/Tests/RunCMake/CommandLine/RunCMakeTest.cmake
index 84d4cc9..cef6368 100644
--- a/Tests/RunCMake/CommandLine/RunCMakeTest.cmake
+++ b/Tests/RunCMake/CommandLine/RunCMakeTest.cmake
@@ -140,6 +140,10 @@ set(RunCMake_TEST_OPTIONS --trace)
run_cmake(trace)
unset(RunCMake_TEST_OPTIONS)
+set(RunCMake_TEST_OPTIONS --trace-expand)
+run_cmake(trace-expand)
+unset(RunCMake_TEST_OPTIONS)
+
set(RunCMake_TEST_OPTIONS --debug-trycompile)
run_cmake(debug-trycompile)
unset(RunCMake_TEST_OPTIONS)