2017-08-24 11:38:40 +08:00
|
|
|
logmsg Validate basic expressions
|
2016-05-03 11:53:48 +08:00
|
|
|
math 3 / 2
|
|
|
|
math 10/6
|
|
|
|
math -s0 10 / 6
|
|
|
|
math -s3 10/6
|
|
|
|
math '10 % 6'
|
|
|
|
math -s0 '10 % 6'
|
|
|
|
math '23 % 7'
|
2017-07-15 07:03:31 +08:00
|
|
|
math --scale=6 '5 / 3 * 0.3'
|
2017-08-24 08:32:49 +08:00
|
|
|
math "7^2"
|
2017-07-15 07:03:31 +08:00
|
|
|
math -1 + 1
|
|
|
|
math '-2 * -2'
|
|
|
|
math 5 \* -2
|
|
|
|
math -- -4 / 2
|
|
|
|
math -- '-4 * 2'
|
2017-08-24 11:38:40 +08:00
|
|
|
|
2017-12-18 04:31:39 +08:00
|
|
|
logmsg Validate how variables in an expression are handled
|
|
|
|
math $x + 1
|
2017-08-24 11:38:40 +08:00
|
|
|
set x 1
|
2017-12-18 04:31:39 +08:00
|
|
|
math $x + 1
|
2017-08-24 11:38:40 +08:00
|
|
|
set x 3
|
|
|
|
set y 1.5
|
2017-12-18 04:31:39 +08:00
|
|
|
math "-$x * $y"
|
|
|
|
math -s1 "-$x * $y"
|
2017-11-25 15:04:44 +08:00
|
|
|
|
|
|
|
logmsg Validate math error reporting
|
|
|
|
not math 'min()'
|
|
|
|
not math 'min("abc")'
|
|
|
|
not math 'max()'
|
|
|
|
not math 'sum()'
|