From de211e0288bd2cd8e27ab23252ec2e4077b3d589 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 30 Nov 2014 14:10:36 -0600 Subject: Tests for operator priority groupings. --- tests/expr.test | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tests/expr.test') 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" "" "" -- cgit v1.2.3