From 2810e561829b0db36961442f0332939e1b74ccdf Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 14 Oct 2016 15:28:51 -0400 Subject: math(EXPR): Add support for unary `+` and `-` expressions Closes: #8996 --- Tests/MathTest/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Tests/MathTest') diff --git a/Tests/MathTest/CMakeLists.txt b/Tests/MathTest/CMakeLists.txt index ed2c7d48c2..f764b3a4fd 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 "") -- cgit v1.2.1