aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-03-31 20:31:13 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2018-03-31 20:31:13 +0200
commit32e183e63ecb46595a480ab66120795ed9c9e0df (patch)
tree7524e3aa5f876df6aa2570013c21e8e521e9fbb8
parenta94eeb0b4222de7f05594c93ffdd84faea5b8e2d (diff)
downloadbusybox-w32-32e183e63ecb46595a480ab66120795ed9c9e0df.tar.gz
busybox-w32-32e183e63ecb46595a480ab66120795ed9c9e0df.tar.bz2
busybox-w32-32e183e63ecb46595a480ab66120795ed9c9e0df.zip
shells: fix var_LINENO1.tests false positive, add it to ash tests too
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--shell/ash_test/ash-vars/var_LINENO1.right8
-rwxr-xr-xshell/ash_test/ash-vars/var_LINENO1.tests6
-rwxr-xr-xshell/hush_test/hush-vars/var_LINENO1.tests2
3 files changed, 15 insertions, 1 deletions
diff --git a/shell/ash_test/ash-vars/var_LINENO1.right b/shell/ash_test/ash-vars/var_LINENO1.right
new file mode 100644
index 000000000..31e1a4478
--- /dev/null
+++ b/shell/ash_test/ash-vars/var_LINENO1.right
@@ -0,0 +1,8 @@
12:2
23:3
34:4
45:5
52:2
63:3
74:4
85:5
diff --git a/shell/ash_test/ash-vars/var_LINENO1.tests b/shell/ash_test/ash-vars/var_LINENO1.tests
new file mode 100755
index 000000000..775861e64
--- /dev/null
+++ b/shell/ash_test/ash-vars/var_LINENO1.tests
@@ -0,0 +1,6 @@
1env | grep ^LINENO
2echo 2:$LINENO
3echo 3:$LINENO >&2 \
4| { sleep 0.1; echo 4:$LINENO; }
5echo 5:$LINENO
6test "$1" || . ./var_LINENO1.tests norepeat
diff --git a/shell/hush_test/hush-vars/var_LINENO1.tests b/shell/hush_test/hush-vars/var_LINENO1.tests
index 851b52cf5..775861e64 100755
--- a/shell/hush_test/hush-vars/var_LINENO1.tests
+++ b/shell/hush_test/hush-vars/var_LINENO1.tests
@@ -1,4 +1,4 @@
1env | grep LINENO 1env | grep ^LINENO
2echo 2:$LINENO 2echo 2:$LINENO
3echo 3:$LINENO >&2 \ 3echo 3:$LINENO >&2 \
4| { sleep 0.1; echo 4:$LINENO; } 4| { sleep 0.1; echo 4:$LINENO; }