ash: force inlining of a trivial function
[oweals/busybox.git] / shell / hush_test / hush-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