From 4aca87515a5083ae0e31ce3177189fd43b6d05ac Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 3 Jan 2015 13:58:15 +0100 Subject: patch to Vanilla Tomato 1.28 --- .../shell/msh_test/msh-execution/exitcode_EACCES.right | 2 ++ .../shell/msh_test/msh-execution/exitcode_EACCES.tests | 2 ++ .../shell/msh_test/msh-execution/exitcode_ENOENT.right | 2 ++ .../shell/msh_test/msh-execution/exitcode_ENOENT.tests | 2 ++ .../shell/msh_test/msh-execution/many_continues.right | 1 + .../shell/msh_test/msh-execution/many_continues.tests | 15 +++++++++++++++ .../shell/msh_test/msh-execution/nested_break.right | 8 ++++++++ .../shell/msh_test/msh-execution/nested_break.tests | 17 +++++++++++++++++ 8 files changed, 49 insertions(+) create mode 100644 release/src/router/busybox/shell/msh_test/msh-execution/exitcode_EACCES.right create mode 100755 release/src/router/busybox/shell/msh_test/msh-execution/exitcode_EACCES.tests create mode 100644 release/src/router/busybox/shell/msh_test/msh-execution/exitcode_ENOENT.right create mode 100755 release/src/router/busybox/shell/msh_test/msh-execution/exitcode_ENOENT.tests create mode 100644 release/src/router/busybox/shell/msh_test/msh-execution/many_continues.right create mode 100755 release/src/router/busybox/shell/msh_test/msh-execution/many_continues.tests create mode 100644 release/src/router/busybox/shell/msh_test/msh-execution/nested_break.right create mode 100755 release/src/router/busybox/shell/msh_test/msh-execution/nested_break.tests (limited to 'release/src/router/busybox/shell/msh_test/msh-execution') diff --git a/release/src/router/busybox/shell/msh_test/msh-execution/exitcode_EACCES.right b/release/src/router/busybox/shell/msh_test/msh-execution/exitcode_EACCES.right new file mode 100644 index 00000000..6e5480b9 --- /dev/null +++ b/release/src/router/busybox/shell/msh_test/msh-execution/exitcode_EACCES.right @@ -0,0 +1,2 @@ +./: can't execute +126 diff --git a/release/src/router/busybox/shell/msh_test/msh-execution/exitcode_EACCES.tests b/release/src/router/busybox/shell/msh_test/msh-execution/exitcode_EACCES.tests new file mode 100755 index 00000000..26b5c611 --- /dev/null +++ b/release/src/router/busybox/shell/msh_test/msh-execution/exitcode_EACCES.tests @@ -0,0 +1,2 @@ +./ +echo $? diff --git a/release/src/router/busybox/shell/msh_test/msh-execution/exitcode_ENOENT.right b/release/src/router/busybox/shell/msh_test/msh-execution/exitcode_ENOENT.right new file mode 100644 index 00000000..dd49d2c0 --- /dev/null +++ b/release/src/router/busybox/shell/msh_test/msh-execution/exitcode_ENOENT.right @@ -0,0 +1,2 @@ +./does_not_exist_for_sure: not found +127 diff --git a/release/src/router/busybox/shell/msh_test/msh-execution/exitcode_ENOENT.tests b/release/src/router/busybox/shell/msh_test/msh-execution/exitcode_ENOENT.tests new file mode 100755 index 00000000..7f1b88a9 --- /dev/null +++ b/release/src/router/busybox/shell/msh_test/msh-execution/exitcode_ENOENT.tests @@ -0,0 +1,2 @@ +./does_not_exist_for_sure +echo $? diff --git a/release/src/router/busybox/shell/msh_test/msh-execution/many_continues.right b/release/src/router/busybox/shell/msh_test/msh-execution/many_continues.right new file mode 100644 index 00000000..d86bac9d --- /dev/null +++ b/release/src/router/busybox/shell/msh_test/msh-execution/many_continues.right @@ -0,0 +1 @@ +OK diff --git a/release/src/router/busybox/shell/msh_test/msh-execution/many_continues.tests b/release/src/router/busybox/shell/msh_test/msh-execution/many_continues.tests new file mode 100755 index 00000000..86c729ab --- /dev/null +++ b/release/src/router/busybox/shell/msh_test/msh-execution/many_continues.tests @@ -0,0 +1,15 @@ +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/release/src/router/busybox/shell/msh_test/msh-execution/nested_break.right b/release/src/router/busybox/shell/msh_test/msh-execution/nested_break.right new file mode 100644 index 00000000..4e8b6b0f --- /dev/null +++ b/release/src/router/busybox/shell/msh_test/msh-execution/nested_break.right @@ -0,0 +1,8 @@ +A +B +iteration +C +A +B +iteration +D diff --git a/release/src/router/busybox/shell/msh_test/msh-execution/nested_break.tests b/release/src/router/busybox/shell/msh_test/msh-execution/nested_break.tests new file mode 100755 index 00000000..f2e6f81a --- /dev/null +++ b/release/src/router/busybox/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-54-g00ecf