aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/last_amp.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-misc/last_amp.tests')
-rwxr-xr-xshell/hush_test/hush-misc/last_amp.tests8
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/last_amp.tests b/shell/hush_test/hush-misc/last_amp.tests
new file mode 100755
index 000000000..160937644
--- /dev/null
+++ b/shell/hush_test/hush-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