diff options
author | Denys Vlasenko | 2023-06-15 12:44:43 +0200 |
---|---|---|
committer | Denys Vlasenko | 2023-06-15 12:44:43 +0200 |
commit | 22cb0d573a5cabd24fa648f1a13c22acf661a4a3 (patch) | |
tree | 39fafab4582ca770148ca9aa225cda17f0687a10 /shell/ash_test/ash-arith/arith-assign-in-varexp1.tests | |
parent | 648f506949ded749e28186d0092b6e42085c897b (diff) | |
download | busybox-22cb0d573a5cabd24fa648f1a13c22acf661a4a3.zip busybox-22cb0d573a5cabd24fa648f1a13c22acf661a4a3.tar.gz |
shell: document another arithmetic discrepancy with bash
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test/ash-arith/arith-assign-in-varexp1.tests')
-rwxr-xr-x | shell/ash_test/ash-arith/arith-assign-in-varexp1.tests | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/ash_test/ash-arith/arith-assign-in-varexp1.tests b/shell/ash_test/ash-arith/arith-assign-in-varexp1.tests new file mode 100755 index 0000000..fc8ac9d --- /dev/null +++ b/shell/ash_test/ash-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" |