summaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/last_amp.tests (plain)
blob: 160937644fea50871a546772516d618b492647eb
1$THIS_SH -c 'echo 3&'
2d=`date`
3while test "`date`" = "$d"; do true; done
4d1=`date`
5$THIS_SH -c 'sleep 1&'
6d2=`date`
7test "$d1" = "$d2" || echo BAD
8echo End
9