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-3581c625151d25d8e1cbc80c44337d398d97cf42.tar.gz
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 @@
n=0
while :
do
- echo A
- while :
- do
- echo B
- break
- done
- echo iteration
- [ $n = 1 ] && break
+ echo A
+ while :
+ do
+ echo B
+ break
+ done
+ echo iteration
+ [ $n = 1 ] && break
echo C
- n=`expr $n + 1`
+ n=`expr $n + 1`
done
echo D