Merge branch 'master' of git+ssh://vda@busybox.net/var/lib/git/busybox
[oweals/busybox.git] / shell / msh_test / msh-execution / many_continues.tests
1 if test $# = 0; then
2     # Child will kill us in 1 second
3     "$THIS_SH" "$0" $$ &
4
5     # Loop many, many times
6     trap 'echo OK; exit 0' 15
7     while true; do
8         continue
9     done
10     echo BAD
11     exit 1
12 fi
13
14 sleep 1
15 kill $1