[git commit] sh testsuite: add tests for exitcode on failure to exec

Denys Vlasenko vda.linux at googlemail.com
Sun Oct 2 22:55:34 UTC 2016


commit: https://git.busybox.net/busybox/commit/?id=c775f829db2e25ffa384ffe1b6b6859cdddfa935
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 shell/ash_test/ash-misc/exitcode_EACCES.right   | 2 ++
 shell/ash_test/ash-misc/exitcode_EACCES.tests   | 2 ++
 shell/ash_test/ash-misc/exitcode_ENOENT.right   | 2 ++
 shell/ash_test/ash-misc/exitcode_ENOENT.tests   | 2 ++
 shell/hush_test/hush-misc/exitcode_EACCES.right | 2 ++
 shell/hush_test/hush-misc/exitcode_EACCES.tests | 2 ++
 shell/hush_test/hush-misc/exitcode_ENOENT.right | 2 ++
 shell/hush_test/hush-misc/exitcode_ENOENT.tests | 2 ++
 8 files changed, 16 insertions(+)

diff --git a/shell/ash_test/ash-misc/exitcode_EACCES.right b/shell/ash_test/ash-misc/exitcode_EACCES.right
new file mode 100644
index 0000000..0a332f5
--- /dev/null
+++ b/shell/ash_test/ash-misc/exitcode_EACCES.right
@@ -0,0 +1,2 @@
+exitcode_EACCES.tests: line 1: ./: Permission denied
+126
diff --git a/shell/ash_test/ash-misc/exitcode_EACCES.tests b/shell/ash_test/ash-misc/exitcode_EACCES.tests
new file mode 100755
index 0000000..26b5c61
--- /dev/null
+++ b/shell/ash_test/ash-misc/exitcode_EACCES.tests
@@ -0,0 +1,2 @@
+./
+echo $?
diff --git a/shell/ash_test/ash-misc/exitcode_ENOENT.right b/shell/ash_test/ash-misc/exitcode_ENOENT.right
new file mode 100644
index 0000000..45b27b3
--- /dev/null
+++ b/shell/ash_test/ash-misc/exitcode_ENOENT.right
@@ -0,0 +1,2 @@
+exitcode_ENOENT.tests: line 1: ./does_not_exist_for_sure: not found
+127
diff --git a/shell/ash_test/ash-misc/exitcode_ENOENT.tests b/shell/ash_test/ash-misc/exitcode_ENOENT.tests
new file mode 100755
index 0000000..7f1b88a
--- /dev/null
+++ b/shell/ash_test/ash-misc/exitcode_ENOENT.tests
@@ -0,0 +1,2 @@
+./does_not_exist_for_sure
+echo $?
diff --git a/shell/hush_test/hush-misc/exitcode_EACCES.right b/shell/hush_test/hush-misc/exitcode_EACCES.right
new file mode 100644
index 0000000..a80d551
--- /dev/null
+++ b/shell/hush_test/hush-misc/exitcode_EACCES.right
@@ -0,0 +1,2 @@
+hush: can't execute './': Permission denied
+126
diff --git a/shell/hush_test/hush-misc/exitcode_EACCES.tests b/shell/hush_test/hush-misc/exitcode_EACCES.tests
new file mode 100755
index 0000000..26b5c61
--- /dev/null
+++ b/shell/hush_test/hush-misc/exitcode_EACCES.tests
@@ -0,0 +1,2 @@
+./
+echo $?
diff --git a/shell/hush_test/hush-misc/exitcode_ENOENT.right b/shell/hush_test/hush-misc/exitcode_ENOENT.right
new file mode 100644
index 0000000..d831550
--- /dev/null
+++ b/shell/hush_test/hush-misc/exitcode_ENOENT.right
@@ -0,0 +1,2 @@
+hush: can't execute './does_not_exist_for_sure': No such file or directory
+127
diff --git a/shell/hush_test/hush-misc/exitcode_ENOENT.tests b/shell/hush_test/hush-misc/exitcode_ENOENT.tests
new file mode 100755
index 0000000..7f1b88a
--- /dev/null
+++ b/shell/hush_test/hush-misc/exitcode_ENOENT.tests
@@ -0,0 +1,2 @@
+./does_not_exist_for_sure
+echo $?


More information about the busybox-cvs mailing list