add a pathological test case for here doc related to eof marker and other ugly corner...
[oweals/busybox.git] / shell / hush_test / hush-misc / break2.tests
1 while true; do
2     echo A
3     while true; do echo AA; break 2; echo BB; done
4     echo B
5 done
6 echo OK:$?