summaryrefslogtreecommitdiffstats
path: root/Tests/Complex
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-10-09 19:54:34 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-10-09 19:54:34 (GMT)
commitaef8110c36773c11283f998c38998d364be9b054 (patch)
tree0d20d2e13bcf3ebb09e3ec86b89fa70ce10751cf /Tests/Complex
parentf990777a605f200d00aa5ba980c1acbdc9446ed9 (diff)
downloadCMake-aef8110c36773c11283f998c38998d364be9b054.zip
CMake-aef8110c36773c11283f998c38998d364be9b054.tar.gz
CMake-aef8110c36773c11283f998c38998d364be9b054.tar.bz2
added test of SET CACHE FORCE
Diffstat (limited to 'Tests/Complex')
-rw-r--r--Tests/Complex/CMakeLists.txt6
-rw-r--r--Tests/Complex/Executable/complex.cxx6
-rw-r--r--Tests/Complex/cmTestConfigure.h.in3
3 files changed, 15 insertions, 0 deletions
diff --git a/Tests/Complex/CMakeLists.txt b/Tests/Complex/CMakeLists.txt
index 849ec3c..bcc56a5 100644
--- a/Tests/Complex/CMakeLists.txt
+++ b/Tests/Complex/CMakeLists.txt
@@ -68,6 +68,12 @@ LINK_DIRECTORIES(
)
#
+# check for SET CACHE FORCE
+#
+SET(FORCE_TEST 1 CACHE STRING "a test")
+SET(FORCE_TEST 0 CACHE STRING "a test" FORCE)
+
+#
# Lib and exe path
#
SET (LIBRARY_OUTPUT_PATH
diff --git a/Tests/Complex/Executable/complex.cxx b/Tests/Complex/Executable/complex.cxx
index c5969cb..7aa4140 100644
--- a/Tests/Complex/Executable/complex.cxx
+++ b/Tests/Complex/Executable/complex.cxx
@@ -809,6 +809,12 @@ int main()
cmFailed("IF inside a FOREACH block is broken");
#endif
+#ifdef FORCE_TEST
+ cmFailed("CMake SET CACHE FORCE");
+#else
+ cmPassed("CMake SET CACHE FORCE");
+#endif
+
// ----------------------------------------------------------------------
// Summary
diff --git a/Tests/Complex/cmTestConfigure.h.in b/Tests/Complex/cmTestConfigure.h.in
index 350a9c0..0d380b1 100644
--- a/Tests/Complex/cmTestConfigure.h.in
+++ b/Tests/Complex/cmTestConfigure.h.in
@@ -64,3 +64,6 @@
// Test IF inside FOREACH
#cmakedefine IF_INSIDE_FOREACH_THEN_EXECUTED
#cmakedefine IF_INSIDE_FOREACH_ELSE_EXECUTED
+
+// Test SET CACHE FORCE
+#cmakedefine FORCE_TEST