aboutsummaryrefslogtreecommitdiff
path: root/shell/msh_test
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-01-25 13:39:24 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-01-25 13:39:24 +0100
commit3581c625151d25d8e1cbc80c44337d398d97cf42 (patch)
tree86a1abc69a3606e6f595a18d72bd1eb48bc505b3 /shell/msh_test
parent46685a46bbffc04d507ce756f4b703aae024debd (diff)
downloadbusybox-w32-3581c625151d25d8e1cbc80c44337d398d97cf42.tar.gz
busybox-w32-3581c625151d25d8e1cbc80c44337d398d97cf42.tar.bz2
busybox-w32-3581c625151d25d8e1cbc80c44337d398d97cf42.zip
whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/msh_test')
-rwxr-xr-xshell/msh_test/msh-execution/nested_break.tests18
1 files changed, 9 insertions, 9 deletions
diff --git a/shell/msh_test/msh-execution/nested_break.tests b/shell/msh_test/msh-execution/nested_break.tests
index f2e6f81ae..1a954d227 100755
--- a/shell/msh_test/msh-execution/nested_break.tests
+++ b/shell/msh_test/msh-execution/nested_break.tests
@@ -3,15 +3,15 @@
3n=0 3n=0
4while : 4while :
5do 5do
6 echo A 6 echo A
7 while : 7 while :
8 do 8 do
9 echo B 9 echo B
10 break 10 break
11 done 11 done
12 echo iteration 12 echo iteration
13 [ $n = 1 ] && break 13 [ $n = 1 ] && break
14 echo C 14 echo C
15 n=`expr $n + 1` 15 n=`expr $n + 1`
16done 16done
17echo D 17echo D