From 2feaa227a4ddbf642207beebe7ac5ce85c57f018 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 3 Oct 2016 00:51:29 +0200 Subject: shell: delete all msh tests Signed-off-by: Denys Vlasenko --- shell/msh_test/msh-execution/nested_break.tests | 17 ----------------- 1 file changed, 17 deletions(-) delete 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 deleted file mode 100755 index 1a954d227..000000000 --- a/shell/msh_test/msh-execution/nested_break.tests +++ /dev/null @@ -1,17 +0,0 @@ -# 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