EVIS: Add tests for syntax corner cases and CMP0053

Include tests for:

- @ expansion during normal execution
- various characters in variable names for comparison between the new
  and the old parser
- corner cases in the parsers
- correct messages when behavior is different
This commit is contained in:
Ben Boeckel
2014-05-08 13:24:49 -04:00
committed by Brad King
parent bc38565863
commit 411f77d14f
108 changed files with 692 additions and 14 deletions
-13
View File
@@ -127,12 +127,6 @@ string(LENGTH ${substringres} lengthres)
file(RELATIVE_PATH relpath "/usr/local/bin" "/usr/X11R6/bin/xnest")
# Escaping test
set(var "\\ \" \ \t \n \r \# \( \) \0")
message("Output: [${var}]")
set(var \\ \" \ \t \n \r \# \( \) \0)
message("Output: [${var}]")
# Make-style unquoted argument test
set(var $(VAR1)$(VAR2)/$(VAR3))
message("Output: [${var}]")
@@ -141,13 +135,6 @@ if(NOT result)
message(SEND_ERROR "Unquoted $(VAR) syntax is broken.")
endif()
# Obscure environment variable name
set("ENV{x+(y)}" "Obscure environment variable value")
message("Output: [$ENV{x+(y)}]")
if(NOT "$ENV{x+(y)}" STREQUAL "Obscure environment variable value")
message(SEND_ERROR "Environment variable \"ENV{x+(y)}\" does not work.")
endif()
# Make directories test
file(MAKE_DIRECTORY
"${CMAKE_CURRENT_BINARY_DIR}/Includes"