summaryrefslogtreecommitdiff
path: root/Tests/CMakeTests/WhileTest.cmake.in
blob: 90665448ead8da048c6285e7dc10df8f184b6e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
set(NUMBERS "")
set(COUNT 0)

while(COUNT LESS 200)
    string(APPEND NUMBERS " ${COUNT}")
    set(COUNT "2${COUNT}")

    set(NCOUNT 3)
    while(NCOUNT LESS 31)
        string(APPEND NUMBERS " ${NCOUNT}")
        string(APPEND NCOUNT "0")
    endwhile()
endwhile()

if(NOT NUMBERS STREQUAL " 0 3 30 20 3 30")
    message(SEND_ERROR "while loop nesting error, result: '${NUMBERS}'")
endif()