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:
Brad King 2009-04-24 11:21:09 -04:00
parent 708d1cf1ee
commit 6a74dbbeef
1 changed files with 1 additions and 1 deletions

View File

@ -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)
#-----------------------------------------------------------------------------