summaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-arith/arith-postinc.tests
diff options
context:
space:
mode:
authorDenys Vlasenko2021-09-26 13:25:49 +0200
committerDenys Vlasenko2021-09-26 13:29:25 +0200
commit1be73dd9ad6d2cf6747934374c1d58bd9bc211b4 (patch)
treea009dd15c30f36a991f945cca931c437479cd200 /shell/ash_test/ash-arith/arith-postinc.tests
parent62e433131b289ea90e465cf0c5f78c8c226fc692 (diff)
downloadbusybox-1be73dd9ad6d2cf6747934374c1d58bd9bc211b4.zip
busybox-1be73dd9ad6d2cf6747934374c1d58bd9bc211b4.tar.gz
shell: fix parsing of $(( (v)++ + NUM ))
function old new delta evaluate_string 988 1011 +23 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test/ash-arith/arith-postinc.tests')
-rwxr-xr-xshell/ash_test/ash-arith/arith-postinc.tests4
1 files changed, 4 insertions, 0 deletions
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:$?