From a43dba76ea394d789de67c6322b51e1d65bdba3b Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 2 Mar 2008 19:57:53 +0000 Subject: msh: create testsuite (based on hush one) hush: add TODO (doesn't know ":" command) --- shell/msh_test/msh-execution/nested_break.tests | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 shell/msh_test/msh-execution/nested_break.tests (limited to 'shell/msh_test/msh-execution/nested_break.tests') diff --git a/shell/msh_test/msh-execution/nested_break.tests b/shell/msh_test/msh-execution/nested_break.tests new file mode 100755 index 000000000..f2e6f81ae --- /dev/null +++ b/shell/msh_test/msh-execution/nested_break.tests @@ -0,0 +1,17 @@ +# 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 -- cgit v1.2.3