Re: wait regression in 3800d4

2010-05-22 Thread Jilles Tjoelker
On Wed, May 19, 2010 at 07:08:56PM +, Gerrit Pape wrote: Hi, since commit 3800d49 the wait builtin shows some unexpected behavior, see http://bugs.debian.org/581425 To reproduce: $ dash -c ' for i in 1 2 3; do (sleep $i; echo $i) done wait echo all done sleep 2' 1 all

wait regression in 3800d4

2010-05-19 Thread Gerrit Pape
Hi, since commit 3800d49 the wait builtin shows some unexpected behavior, see http://bugs.debian.org/581425 To reproduce: $ dash -c ' for i in 1 2 3; do (sleep $i; echo $i) done wait echo all done sleep 2' 1 all done 2 3 $ Expected output: 1 2 3 all done I don't completely