Tomato 1.25
[tomato.git] / release / src / router / busybox / shell / ash_test / ash-misc / last_amp.tests
blob160937644fea50871a546772516d618b492647eb
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