summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/shell/ash_test/ash-misc/last_amp.tests
blob: 160937644fea50871a546772516d618b492647eb (plain)
1
2
3
4
5
6
7
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