diff options
Diffstat (limited to 'shell/msh_test')
-rw-r--r-- | shell/msh_test/TODO_bug846 | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/shell/msh_test/TODO_bug846 b/shell/msh_test/TODO_bug846 new file mode 100644 index 000000000..5c777fedb --- /dev/null +++ b/shell/msh_test/TODO_bug846 @@ -0,0 +1,29 @@ +#!/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 |