upload tizen1.0 source
[external/busybox.git] / util-linux / shell / ash_test / ash-misc / last_amp.tests
1 $THIS_SH -c 'echo 3&'
2 d=`date`
3 while test "`date`" = "$d"; do true; done
4 d1=`date`
5 $THIS_SH -c 'sleep 1&'
6 d2=`date`
7 test "$d1" = "$d2" || echo BAD
8 echo End