summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-10-18 12:42:54 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-10-18 12:42:54 (GMT)
commit9519d79b63af5912ecb620ea28079a2341ee0253 (patch)
treeb764bf90ebc22d6bb74cd9c5a8268af0067d0d4b /Tests
parent086f356f6c83537aeee3ca06ff8db335eee03560 (diff)
parent2810e561829b0db36961442f0332939e1b74ccdf (diff)
downloadCMake-9519d79b63af5912ecb620ea28079a2341ee0253.zip
CMake-9519d79b63af5912ecb620ea28079a2341ee0253.tar.gz
CMake-9519d79b63af5912ecb620ea28079a2341ee0253.tar.bz2
Merge topic 'math-EXPR-unary'
2810e561 math(EXPR): Add support for unary `+` and `-` expressions 834f52a6 cmExprParser: Revise indentation style to match rest of CMake 7aaed265 cmExprParser: Port to bison 3
Diffstat (limited to 'Tests')
-rw-r--r--Tests/MathTest/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/MathTest/CMakeLists.txt b/Tests/MathTest/CMakeLists.txt
index ed2c7d4..f764b3a 100644
--- a/Tests/MathTest/CMakeLists.txt
+++ b/Tests/MathTest/CMakeLists.txt
@@ -10,6 +10,9 @@ set(expressions
"1 +(3*4) + 10 >> 2"
"10000 / 20 / 4"
"10000 / (20 / 4)"
+ "-1 + +1"
+ "+1 - -1"
+ "+1 - - + + -(-3 + - - +1)"
)
set(FILE_EXPRESSIONS "")