aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/expr.test9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/expr.test b/tests/expr.test
index cce7d9d0..1c038a5c 100644
--- a/tests/expr.test
+++ b/tests/expr.test
@@ -8,3 +8,12 @@ testing "expr string" "expr astring" "astring\n" "" ""
testing "expr 1 + 3" "expr 1 + 3" "4\n" "" ""
testing "expr 5 + 6 * 3" "expr 5 + 6 \* 3" "23\n" "" ""
testing "expr ( 5 + 6 ) * 3" "expr \( 5 + 6 \) \* 3" "33\n" "" ""
+testing "expr * / same priority" "expr 4 \* 3 / 2" "6\n" "" ""
+testing "expr / * same priority" "expr 3 / 2 \* 4" "4\n" "" ""
+testing "expr & before |" "expr 0 \| 1 \& 0" "0\n" "" ""
+testing "expr | after &" "expr 1 \| 0 \& 0" "1\n" "" ""
+testing "expr | & same priority" "expr 0 \& 0 \| 1" "1\n" "" ""
+testing "expr % * same priority" "expr 3 % 2 \* 4" "4\n" "" ""
+testing "expr * % same priority" "expr 3 \* 2 % 4" "2\n" "" ""
+testing "expr = > same priority" "expr 0 = 2 \> 3" "0\n" "" ""
+testing "expr > = same priority" "expr 3 \> 2 = 1" "1\n" "" ""