From 1be73dd9ad6d2cf6747934374c1d58bd9bc211b4 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 26 Sep 2021 13:25:49 +0200 Subject: shell: fix parsing of $(( (v)++ + NUM )) function old new delta evaluate_string 988 1011 +23 Signed-off-by: Denys Vlasenko --- shell/ash_test/ash-arith/arith-postinc.right | 3 +++ shell/ash_test/ash-arith/arith-postinc.tests | 4 ++++ 2 files changed, 7 insertions(+) (limited to 'shell/ash_test/ash-arith') diff --git a/shell/ash_test/ash-arith/arith-postinc.right b/shell/ash_test/ash-arith/arith-postinc.right index c95ce02..5cd4ba6 100644 --- a/shell/ash_test/ash-arith/arith-postinc.right +++ b/shell/ash_test/ash-arith/arith-postinc.right @@ -2,4 +2,7 @@ 1 1 1 1 1 1 +6 6 +7 7 +7 7 Ok:0 diff --git a/shell/ash_test/ash-arith/arith-postinc.tests b/shell/ash_test/ash-arith/arith-postinc.tests index 3fd9bfe..f2ae778 100755 --- a/shell/ash_test/ash-arith/arith-postinc.tests +++ b/shell/ash_test/ash-arith/arith-postinc.tests @@ -2,4 +2,8 @@ echo 1 $((0++1)) echo 1 $((0--1)) x=-1; echo 1 $((0-$x)) x=+1; echo 1 $((0+$x)) +a=3 +echo 6 $((a+++3)) # a++ + 3 +echo 7 $(((a)+++3)) # a + + + 3 +echo 7 $(((a)+++3)) # a + + + 3 echo Ok:$? -- cgit v1.1