aboutsummaryrefslogtreecommitdiff
path: root/shell/msh_test/msh-execution
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-10-03 00:51:29 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2016-10-03 00:51:29 +0200
commit2feaa227a4ddbf642207beebe7ac5ce85c57f018 (patch)
tree39e469a3bbdcac9d85e0615685f90999d044266a /shell/msh_test/msh-execution
parent9793fc576afa25715cf75c121dbfd9da1e053b0a (diff)
downloadbusybox-w32-2feaa227a4ddbf642207beebe7ac5ce85c57f018.tar.gz
busybox-w32-2feaa227a4ddbf642207beebe7ac5ce85c57f018.tar.bz2
busybox-w32-2feaa227a4ddbf642207beebe7ac5ce85c57f018.zip
shell: delete all msh tests
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/msh_test/msh-execution')
-rw-r--r--shell/msh_test/msh-execution/exitcode_EACCES.right2
-rwxr-xr-xshell/msh_test/msh-execution/exitcode_EACCES.tests2
-rw-r--r--shell/msh_test/msh-execution/exitcode_ENOENT.right2
-rwxr-xr-xshell/msh_test/msh-execution/exitcode_ENOENT.tests2
-rw-r--r--shell/msh_test/msh-execution/many_continues.right1
-rwxr-xr-xshell/msh_test/msh-execution/many_continues.tests15
-rw-r--r--shell/msh_test/msh-execution/nested_break.right8
-rwxr-xr-xshell/msh_test/msh-execution/nested_break.tests17
8 files changed, 0 insertions, 49 deletions
diff --git a/shell/msh_test/msh-execution/exitcode_EACCES.right b/shell/msh_test/msh-execution/exitcode_EACCES.right
deleted file mode 100644
index 6e5480b9d..000000000
--- a/shell/msh_test/msh-execution/exitcode_EACCES.right
+++ /dev/null
@@ -1,2 +0,0 @@
1./: can't execute
2126
diff --git a/shell/msh_test/msh-execution/exitcode_EACCES.tests b/shell/msh_test/msh-execution/exitcode_EACCES.tests
deleted file mode 100755
index 26b5c6116..000000000
--- a/shell/msh_test/msh-execution/exitcode_EACCES.tests
+++ /dev/null
@@ -1,2 +0,0 @@
1./
2echo $?
diff --git a/shell/msh_test/msh-execution/exitcode_ENOENT.right b/shell/msh_test/msh-execution/exitcode_ENOENT.right
deleted file mode 100644
index dd49d2c0c..000000000
--- a/shell/msh_test/msh-execution/exitcode_ENOENT.right
+++ /dev/null
@@ -1,2 +0,0 @@
1./does_not_exist_for_sure: not found
2127
diff --git a/shell/msh_test/msh-execution/exitcode_ENOENT.tests b/shell/msh_test/msh-execution/exitcode_ENOENT.tests
deleted file mode 100755
index 7f1b88a99..000000000
--- a/shell/msh_test/msh-execution/exitcode_ENOENT.tests
+++ /dev/null
@@ -1,2 +0,0 @@
1./does_not_exist_for_sure
2echo $?
diff --git a/shell/msh_test/msh-execution/many_continues.right b/shell/msh_test/msh-execution/many_continues.right
deleted file mode 100644
index d86bac9de..000000000
--- a/shell/msh_test/msh-execution/many_continues.right
+++ /dev/null
@@ -1 +0,0 @@
1OK
diff --git a/shell/msh_test/msh-execution/many_continues.tests b/shell/msh_test/msh-execution/many_continues.tests
deleted file mode 100755
index 86c729abc..000000000
--- a/shell/msh_test/msh-execution/many_continues.tests
+++ /dev/null
@@ -1,15 +0,0 @@
1if test $# = 0; then
2 # Child will kill us in 1 second
3 "$THIS_SH" "$0" $$ &
4
5 # Loop many, many times
6 trap 'echo OK; exit 0' 15
7 while true; do
8 continue
9 done
10 echo BAD
11 exit 1
12fi
13
14sleep 1
15kill $1
diff --git a/shell/msh_test/msh-execution/nested_break.right b/shell/msh_test/msh-execution/nested_break.right
deleted file mode 100644
index 4e8b6b0f2..000000000
--- a/shell/msh_test/msh-execution/nested_break.right
+++ /dev/null
@@ -1,8 +0,0 @@
1A
2B
3iteration
4C
5A
6B
7iteration
8D
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 @@
1# Testcase for http://bugs.busybox.net/view.php?id=846
2
3n=0
4while :
5do
6 echo A
7 while :
8 do
9 echo B
10 break
11 done
12 echo iteration
13 [ $n = 1 ] && break
14 echo C
15 n=`expr $n + 1`
16done
17echo D