Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/shell/msh_test/msh-execution/nested_break.tests

Parent Directory Parent Directory | Revision Log Revision Log


Revision 816 - (show annotations) (download)
Fri Apr 24 18:33:46 2009 UTC (15 years, 1 month ago) by niro
File size: 256 byte(s)
-updated to busybox-1.13.4
1 # Testcase for http://bugs.busybox.net/view.php?id=846
2
3 n=0
4 while :
5 do
6 echo A
7 while :
8 do
9 echo B
10 break
11 done
12 echo iteration
13 [ $n = 1 ] && break
14 echo C
15 n=`expr $n + 1`
16 done
17 echo D