aboutsummaryrefslogtreecommitdiff
path: root/shell/msh_test/TODO_bug846
diff options
context:
space:
mode:
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