aboutsummaryrefslogtreecommitdiff
path: root/shell/msh_test/TODO_bug846
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-03-02 19:57:53 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-03-02 19:57:53 +0000
commita43dba76ea394d789de67c6322b51e1d65bdba3b (patch)
treec99cde48cb834d4310ec06b3d377783029103ae1 /shell/msh_test/TODO_bug846
parent444639cc2134d483bf0845416e9b6ce8935af795 (diff)
downloadbusybox-a43dba76ea394d789de67c6322b51e1d65bdba3b.tar.gz
msh: create testsuite (based on hush one)
hush: add TODO (doesn't know ":" command)
Diffstat (limited to 'shell/msh_test/TODO_bug846')
-rw-r--r--shell/msh_test/TODO_bug84629
1 files changed, 0 insertions, 29 deletions
diff --git a/shell/msh_test/TODO_bug846 b/shell/msh_test/TODO_bug846
deleted file mode 100644
index 5c777fedb..000000000
--- a/shell/msh_test/TODO_bug846
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-# For future msh testsuite:
-# Testcase for http://bugs.busybox.net/view.php?id=846
-
-n=0
-while :
-do
- echo A
- while :
- do
- echo B
- break
- done
- echo iteration
- [ $n = 1 ] && break
- echo C
- n=`expr $n + 1`
-done
-echo D
-
-# output should be:
-# A
-# B
-# iteration
-# C
-# A
-# B
-# iteration
-# D