summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/continue/ContinueWhile.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/continue/ContinueWhile.cmake')
-rw-r--r--Tests/RunCMake/continue/ContinueWhile.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/RunCMake/continue/ContinueWhile.cmake b/Tests/RunCMake/continue/ContinueWhile.cmake
new file mode 100644
index 0000000..c1fa87a
--- /dev/null
+++ b/Tests/RunCMake/continue/ContinueWhile.cmake
@@ -0,0 +1,10 @@
+message(STATUS "start")
+unset(iter)
+while(NOT "${iter}" STREQUAL "aaaaa")
+ set(iter "${iter}a")
+ if("${iter}" STREQUAL "aaa")
+ continue()
+ endif()
+ message(STATUS "${iter}")
+endwhile()
+message(STATUS "end")