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 984 - (show annotations) (download)
Sun May 30 11:32:42 2010 UTC (13 years, 11 months ago) by niro
File size: 189 byte(s)
-updated to busybox-1.16.1 and enabled blkid/uuid support in default config
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