busybox/shell/ash_test/ash-misc/last_amp.tests
2008-11-28 03:41:47 +00:00

9 lines
156 B
Plaintext
Executable File

$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