diff options
author | Denys Vlasenko | 2016-10-03 00:51:29 +0200 |
---|---|---|
committer | Denys Vlasenko | 2016-10-03 00:51:29 +0200 |
commit | 2feaa227a4ddbf642207beebe7ac5ce85c57f018 (patch) | |
tree | 39e469a3bbdcac9d85e0615685f90999d044266a /shell/msh_test/msh-execution | |
parent | 9793fc576afa25715cf75c121dbfd9da1e053b0a (diff) | |
download | busybox-2feaa227a4ddbf642207beebe7ac5ce85c57f018.zip busybox-2feaa227a4ddbf642207beebe7ac5ce85c57f018.tar.gz |
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 6e5480b..0000000 --- a/shell/msh_test/msh-execution/exitcode_EACCES.right +++ /dev/null @@ -1,2 +0,0 @@ -./: can't execute -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 26b5c61..0000000 --- a/shell/msh_test/msh-execution/exitcode_EACCES.tests +++ /dev/null @@ -1,2 +0,0 @@ -./ -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 dd49d2c..0000000 --- a/shell/msh_test/msh-execution/exitcode_ENOENT.right +++ /dev/null @@ -1,2 +0,0 @@ -./does_not_exist_for_sure: not found -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 7f1b88a..0000000 --- a/shell/msh_test/msh-execution/exitcode_ENOENT.tests +++ /dev/null @@ -1,2 +0,0 @@ -./does_not_exist_for_sure -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 d86bac9..0000000 --- a/shell/msh_test/msh-execution/many_continues.right +++ /dev/null @@ -1 +0,0 @@ -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 86c729a..0000000 --- a/shell/msh_test/msh-execution/many_continues.tests +++ /dev/null @@ -1,15 +0,0 @@ -if test $# = 0; then - # Child will kill us in 1 second - "$THIS_SH" "$0" $$ & - - # Loop many, many times - trap 'echo OK; exit 0' 15 - while true; do - continue - done - echo BAD - exit 1 -fi - -sleep 1 -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 4e8b6b0..0000000 --- a/shell/msh_test/msh-execution/nested_break.right +++ /dev/null @@ -1,8 +0,0 @@ -A -B -iteration -C -A -B -iteration -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 1a954d2..0000000 --- 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 |