aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test
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 /shell/ash_test
parenta94eeb0b4222de7f05594c93ffdd84faea5b8e2d (diff)
downloadbusybox-32e183e63ecb46595a480ab66120795ed9c9e0df.tar.gz
shells: fix var_LINENO1.tests false positive, add it to ash tests too
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test')
-rw-r--r--shell/ash_test/ash-vars/var_LINENO1.right8
-rwxr-xr-xshell/ash_test/ash-vars/var_LINENO1.tests6
2 files changed, 14 insertions, 0 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 @@
+2:2
+3:3
+4:4
+5:5
+2:2
+3:3
+4:4
+5: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 @@
+env | grep ^LINENO
+echo 2:$LINENO
+echo 3:$LINENO >&2 \
+| { sleep 0.1; echo 4:$LINENO; }
+echo 5:$LINENO
+test "$1" || . ./var_LINENO1.tests norepeat