aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-11-28 03:41:47 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-11-28 03:41:47 +0000
commit727752d2d2968e67784935dd35c32a97c0c13a7c (patch)
tree3cf5e79044841dd0b342cc0d8e0843b5f9be87b1 /shell/ash_test
parent9e0a7c9c414e3e155d965c8b8b1dfed42ca21ec5 (diff)
downloadbusybox-727752d2d2968e67784935dd35c32a97c0c13a7c.tar.gz
ash: better fix for ash -c 'echo 5&' and ash -c 'sleep 5&'
with testcase
Diffstat (limited to 'shell/ash_test')
-rw-r--r--shell/ash_test/ash-misc/last_amp.right2
-rwxr-xr-xshell/ash_test/ash-misc/last_amp.tests8
2 files changed, 10 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/last_amp.right b/shell/ash_test/ash-misc/last_amp.right
new file mode 100644
index 000000000..3da21aec2
--- /dev/null
+++ b/shell/ash_test/ash-misc/last_amp.right
@@ -0,0 +1,2 @@
+3
+End
diff --git a/shell/ash_test/ash-misc/last_amp.tests b/shell/ash_test/ash-misc/last_amp.tests
new file mode 100755
index 000000000..160937644
--- /dev/null
+++ b/shell/ash_test/ash-misc/last_amp.tests
@@ -0,0 +1,8 @@
+$THIS_SH -c 'echo 3&'
+d=`date`
+while test "`date`" = "$d"; do true; done
+d1=`date`
+$THIS_SH -c 'sleep 1&'
+d2=`date`
+test "$d1" = "$d2" || echo BAD
+echo End