summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/while/CMP0130-common.cmake
blob: 15322e0d053416cd18fbfc7b45f335df132a0d68 (plain)
1
2
3
4
5
6
set(paren "(")
while(${paren})
  message(STATUS "Condition incorrectly true")
  break()
endwhile()
message(STATUS "Code incorrectly accepted")