hush: small fix for repeated continue and fix for wrong loop depth count
[oweals/busybox.git] / shell / hush_test / hush-misc / break3.tests
1 v=break; while true; do echo A; $v; echo B; break; echo C; done
2 echo OK:$?