diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2023-06-15 12:44:43 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2023-06-15 12:44:43 +0200 |
commit | 22cb0d573a5cabd24fa648f1a13c22acf661a4a3 (patch) | |
tree | 39fafab4582ca770148ca9aa225cda17f0687a10 | |
parent | 648f506949ded749e28186d0092b6e42085c897b (diff) | |
download | busybox-w32-22cb0d573a5cabd24fa648f1a13c22acf661a4a3.tar.gz busybox-w32-22cb0d573a5cabd24fa648f1a13c22acf661a4a3.tar.bz2 busybox-w32-22cb0d573a5cabd24fa648f1a13c22acf661a4a3.zip |
shell: document another arithmetic discrepancy with bash
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/ash_test/ash-arith/arith-assign-in-varexp1.right | 2 | ||||
-rwxr-xr-x | shell/ash_test/ash-arith/arith-assign-in-varexp1.tests | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/shell/ash_test/ash-arith/arith-assign-in-varexp1.right b/shell/ash_test/ash-arith/arith-assign-in-varexp1.right new file mode 100644 index 000000000..1feb307d2 --- /dev/null +++ b/shell/ash_test/ash-arith/arith-assign-in-varexp1.right | |||
@@ -0,0 +1,2 @@ | |||
1 | 7:7 | ||
2 | x=3 | ||
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 000000000..fc8ac9d97 --- /dev/null +++ b/shell/ash_test/ash-arith/arith-assign-in-varexp1.tests | |||
@@ -0,0 +1,9 @@ | |||
1 | exec 2>&1 | ||
2 | a='x=1' | ||
3 | b='x=2' | ||
4 | c='x=3' | ||
5 | # The variables should evaluate immediately when they encountered, | ||
6 | # not when they go into an operation. Here, order of evaluation | ||
7 | # of names to numbers should be a,b,c - not b,c,a: | ||
8 | echo 7:$((a+b*c)) | ||
9 | echo "x=$x" | ||