diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-03 00:51:29 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-03 00:51:29 +0200 |
| commit | 2feaa227a4ddbf642207beebe7ac5ce85c57f018 (patch) | |
| tree | 39e469a3bbdcac9d85e0615685f90999d044266a /shell/msh_test/msh-execution | |
| parent | 9793fc576afa25715cf75c121dbfd9da1e053b0a (diff) | |
| download | busybox-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')
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 | ||
| 2 | 126 | ||
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 | ./ | ||
| 2 | echo $? | ||
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 | ||
| 2 | 127 | ||
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 | ||
| 2 | echo $? | ||
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 @@ | |||
| 1 | OK | ||
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 @@ | |||
| 1 | if 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 | ||
| 12 | fi | ||
| 13 | |||
| 14 | sleep 1 | ||
| 15 | kill $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 @@ | |||
| 1 | A | ||
| 2 | B | ||
| 3 | iteration | ||
| 4 | C | ||
| 5 | A | ||
| 6 | B | ||
| 7 | iteration | ||
| 8 | D | ||
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 | |||
| 3 | n=0 | ||
| 4 | while : | ||
| 5 | do | ||
| 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` | ||
| 16 | done | ||
| 17 | echo D | ||
