diff options
author | Craig Scott <craig.scott@crascit.com> | 2020-12-05 22:38:12 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2020-12-05 22:38:12 (GMT) |
commit | ab1ee5aab81c105d788405c1c0800edc96437843 (patch) | |
tree | da517cc8718c1dd8835d14351c47c058cdc50b34 /Tests/RunCMake/get_property/RunCMakeTest.cmake | |
parent | 14576a40accb93f0f0a7f06b00996edf17ba4aa2 (diff) | |
download | CMake-ab1ee5aab81c105d788405c1c0800edc96437843.zip CMake-ab1ee5aab81c105d788405c1c0800edc96437843.tar.gz CMake-ab1ee5aab81c105d788405c1c0800edc96437843.tar.bz2 |
get_directory_property: Check for empty or missing property name
Fixes: #21555
Diffstat (limited to 'Tests/RunCMake/get_property/RunCMakeTest.cmake')
-rw-r--r-- | Tests/RunCMake/get_property/RunCMakeTest.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/RunCMake/get_property/RunCMakeTest.cmake b/Tests/RunCMake/get_property/RunCMakeTest.cmake index c4ee53d..2143fa2 100644 --- a/Tests/RunCMake/get_property/RunCMakeTest.cmake +++ b/Tests/RunCMake/get_property/RunCMakeTest.cmake @@ -2,6 +2,9 @@ include(RunCMake) run_cmake(cache_properties) run_cmake(directory_properties) +run_cmake(get_directory_property_empty) +run_cmake(get_directory_property_missing) +run_cmake(get_directory_property_missingWithDir) run_cmake(global_properties) run_cmake(install_properties) run_cmake(source_properties) |