summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/shell/msh_test/msh-execution
diff options
context:
space:
mode:
Diffstat (limited to 'release/src/router/busybox/shell/msh_test/msh-execution')
-rw-r--r--release/src/router/busybox/shell/msh_test/msh-execution/exitcode_EACCES.right2
-rwxr-xr-xrelease/src/router/busybox/shell/msh_test/msh-execution/exitcode_EACCES.tests2
-rw-r--r--release/src/router/busybox/shell/msh_test/msh-execution/exitcode_ENOENT.right2
-rwxr-xr-xrelease/src/router/busybox/shell/msh_test/msh-execution/exitcode_ENOENT.tests2
-rw-r--r--release/src/router/busybox/shell/msh_test/msh-execution/many_continues.right1
-rwxr-xr-xrelease/src/router/busybox/shell/msh_test/msh-execution/many_continues.tests15
-rw-r--r--release/src/router/busybox/shell/msh_test/msh-execution/nested_break.right8
-rwxr-xr-xrelease/src/router/busybox/shell/msh_test/msh-execution/nested_break.tests17
8 files changed, 49 insertions, 0 deletions
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