summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-09-17 13:48:40 (GMT)
committerBrad King <brad.king@kitware.com>2013-10-16 13:22:36 (GMT)
commit6035c0458e511bae94959ff4e01800dd14384fc2 (patch)
treea65e1693506d3f8395a81c38cec74cfdfe356d0e
parent80a3273b5e062ea163973b504f239e0832d4cdb4 (diff)
downloadCMake-6035c0458e511bae94959ff4e01800dd14384fc2.zip
CMake-6035c0458e511bae94959ff4e01800dd14384fc2.tar.gz
CMake-6035c0458e511bae94959ff4e01800dd14384fc2.tar.bz2
get_property: Drop test for builtin property documentation
Property documentation is no longer builtin, so the get_property command will be unable to return the documentation. Drop the test for it.
-rw-r--r--Tests/CMakeTests/GetPropertyTest.cmake.in11
1 files changed, 0 insertions, 11 deletions
diff --git a/Tests/CMakeTests/GetPropertyTest.cmake.in b/Tests/CMakeTests/GetPropertyTest.cmake.in
index a858418..e99193e 100644
--- a/Tests/CMakeTests/GetPropertyTest.cmake.in
+++ b/Tests/CMakeTests/GetPropertyTest.cmake.in
@@ -11,17 +11,6 @@ if (NOT FOO_FULL STREQUAL "NOTFOUND")
message(SEND_ERROR "property FOO has FULL_DOCS set to '${FOO_FULL}'")
endif ()
-get_property(test_brief GLOBAL PROPERTY ENABLED_FEATURES BRIEF_DOCS)
-get_property(test_full GLOBAL PROPERTY ENABLED_FEATURES FULL_DOCS)
-
-if(test_brief STREQUAL "NOTFOUND")
- message(SEND_ERROR "property ENABLED_FEATURES has no BRIEF_DOCS")
-endif()
-
-if(test_full STREQUAL "NOTFOUND")
- message(SEND_ERROR "property ENABLED_FEATURES has no FULL_DOCS")
-endif()
-
set(test_var alpha)
get_property(result VARIABLE PROPERTY test_var)
if(NOT result STREQUAL "alpha")