ENH: Test spaces in non-string preprocessor values
This extends the Preprocessor test to put spaces in the value of a definition that is not a quoted string. In particular this tests that VS6 supports values with spaces if they do not have '"', '$', or ';'. See issue #8779.
This commit is contained in:
parent
708d1cf1ee
commit
6a74dbbeef
|
@ -178,7 +178,7 @@ set(EXPR "x*y+!(x==(y+1*2))*f(x${EXPR_OP1}2)")
|
|||
|
||||
if(NOT WATCOM)
|
||||
# Watcom does not support - or / because it parses them as options.
|
||||
set(EXPR "${EXPR}+y/x-x")
|
||||
set(EXPR "${EXPR} + y/x-x")
|
||||
endif(NOT WATCOM)
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue