diff options
author | R2RT <artur.ryt@gmail.com> | 2018-11-04 22:05:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-11-05 13:31:09 (GMT) |
commit | 53a5aec89998a58dff53946b47426ea692c5ad8d (patch) | |
tree | 54f8d52db37d6baefaa734238fd09a40cb281d4e /Tests/RunCMake/CommandLine/RunCMakeTest.cmake | |
parent | f92f93467ecc22419c981f8f5283c81fa9d8eb01 (diff) | |
download | CMake-53a5aec89998a58dff53946b47426ea692c5ad8d.zip CMake-53a5aec89998a58dff53946b47426ea692c5ad8d.tar.gz CMake-53a5aec89998a58dff53946b47426ea692c5ad8d.tar.bz2 |
CMP0053: Fix double warning on uninitialized variables in -P mode
When `CMP0053` is not set to OLD or NEW then we compute both variants
in case we need to warn about a behavior change. Do not allow both
code paths to produce an uninitialized variable warning.
Fixes: #18552
Diffstat (limited to 'Tests/RunCMake/CommandLine/RunCMakeTest.cmake')
-rw-r--r-- | Tests/RunCMake/CommandLine/RunCMakeTest.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/RunCMake/CommandLine/RunCMakeTest.cmake b/Tests/RunCMake/CommandLine/RunCMakeTest.cmake index b47abfb..ef48852 100644 --- a/Tests/RunCMake/CommandLine/RunCMakeTest.cmake +++ b/Tests/RunCMake/CommandLine/RunCMakeTest.cmake @@ -348,6 +348,10 @@ set(RunCMake_TEST_OPTIONS --trace-expand --warn-uninitialized) run_cmake(trace-expand-warn-uninitialized) unset(RunCMake_TEST_OPTIONS) +set(RunCMake_TEST_OPTIONS --warn-uninitialized) +run_cmake(warn-uninitialized) +unset(RunCMake_TEST_OPTIONS) + set(RunCMake_TEST_OPTIONS --trace-source=trace-only-this-file.cmake) run_cmake(trace-source) unset(RunCMake_TEST_OPTIONS) |