summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-arith/arith-assign-in-varexp1.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-arith/arith-assign-in-varexp1.tests')
-rwxr-xr-xshell/hush_test/hush-arith/arith-assign-in-varexp1.tests9
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/hush_test/hush-arith/arith-assign-in-varexp1.tests b/shell/hush_test/hush-arith/arith-assign-in-varexp1.tests
new file mode 100755
index 0000000..fc8ac9d
--- /dev/null
+++ b/shell/hush_test/hush-arith/arith-assign-in-varexp1.tests
@@ -0,0 +1,9 @@
+exec 2>&1
+a='x=1'
+b='x=2'
+c='x=3'
+# The variables should evaluate immediately when they encountered,
+# not when they go into an operation. Here, order of evaluation
+# of names to numbers should be a,b,c - not b,c,a:
+echo 7:$((a+b*c))
+echo "x=$x"