summaryrefslogtreecommitdiffhomepage
path: root/shell/hush_test/hush-arith/arith1.sub
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-arith/arith1.sub')
-rwxr-xr-xshell/hush_test/hush-arith/arith1.sub4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush_test/hush-arith/arith1.sub b/shell/hush_test/hush-arith/arith1.sub
index 80aa99922..a36785c67 100755
--- a/shell/hush_test/hush-arith/arith1.sub
+++ b/shell/hush_test/hush-arith/arith1.sub
@@ -35,6 +35,6 @@ echo 1 $a
#ash# (( ++ ))
( echo $(( +++7 )) )
-# bash 3.2 apparently thinks that ++ +7 is 7
-#ash# echo $(( ++ + 7 ))
+# ++ is not a inc operator on non-variable, it is the + + sequence
+echo $(( ++ + 7 ))
#ash# (( -- ))