Tests: Add case for unmatched cmake_policy({PUSH,POP})
This commit is contained in:
parent
29c1385675
commit
378185fb7f
|
@ -0,0 +1 @@
|
|||
1
|
|
@ -0,0 +1,4 @@
|
|||
^CMake Error at NotClosed.cmake:[0-9]+ \(include\):
|
||||
cmake_policy PUSH without matching POP
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)$
|
|
@ -0,0 +1 @@
|
|||
cmake_policy(PUSH)
|
|
@ -0,0 +1 @@
|
|||
1
|
|
@ -0,0 +1,4 @@
|
|||
^CMake Error at NotOpened.cmake:[0-9]+ \(cmake_policy\):
|
||||
cmake_policy POP without matching PUSH
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)$
|
|
@ -0,0 +1 @@
|
|||
cmake_policy(POP)
|
|
@ -1,4 +1,6 @@
|
|||
include(RunCMake)
|
||||
|
||||
run_cmake(NotClosed)
|
||||
run_cmake(NotOpened)
|
||||
run_cmake(parent-dir-generate-time)
|
||||
run_cmake(dir-in-macro-generate-time)
|
||||
|
|
Loading…
Reference in New Issue