diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-03 00:55:34 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-03 00:55:34 +0200 |
commit | c775f829db2e25ffa384ffe1b6b6859cdddfa935 (patch) | |
tree | e9b83b0a4fb4e6dff4544e7fe2a525b2df71b61b | |
parent | 2feaa227a4ddbf642207beebe7ac5ce85c57f018 (diff) | |
download | busybox-w32-c775f829db2e25ffa384ffe1b6b6859cdddfa935.tar.gz busybox-w32-c775f829db2e25ffa384ffe1b6b6859cdddfa935.tar.bz2 busybox-w32-c775f829db2e25ffa384ffe1b6b6859cdddfa935.zip |
sh testsuite: add tests for exitcode on failure to exec
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/ash_test/ash-misc/exitcode_EACCES.right | 2 | ||||
-rwxr-xr-x | shell/ash_test/ash-misc/exitcode_EACCES.tests | 2 | ||||
-rw-r--r-- | shell/ash_test/ash-misc/exitcode_ENOENT.right | 2 | ||||
-rwxr-xr-x | shell/ash_test/ash-misc/exitcode_ENOENT.tests | 2 | ||||
-rw-r--r-- | shell/hush_test/hush-misc/exitcode_EACCES.right | 2 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/exitcode_EACCES.tests | 2 | ||||
-rw-r--r-- | shell/hush_test/hush-misc/exitcode_ENOENT.right | 2 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/exitcode_ENOENT.tests | 2 |
8 files changed, 16 insertions, 0 deletions
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 000000000..0a332f56c --- /dev/null +++ b/shell/ash_test/ash-misc/exitcode_EACCES.right | |||
@@ -0,0 +1,2 @@ | |||
1 | exitcode_EACCES.tests: line 1: ./: Permission denied | ||
2 | 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 000000000..26b5c6116 --- /dev/null +++ b/shell/ash_test/ash-misc/exitcode_EACCES.tests | |||
@@ -0,0 +1,2 @@ | |||
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 000000000..45b27b32e --- /dev/null +++ b/shell/ash_test/ash-misc/exitcode_ENOENT.right | |||
@@ -0,0 +1,2 @@ | |||
1 | exitcode_ENOENT.tests: line 1: ./does_not_exist_for_sure: not found | ||
2 | 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 000000000..7f1b88a99 --- /dev/null +++ b/shell/ash_test/ash-misc/exitcode_ENOENT.tests | |||
@@ -0,0 +1,2 @@ | |||
1 | ./does_not_exist_for_sure | ||
2 | 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 000000000..a80d55137 --- /dev/null +++ b/shell/hush_test/hush-misc/exitcode_EACCES.right | |||
@@ -0,0 +1,2 @@ | |||
1 | hush: can't execute './': Permission denied | ||
2 | 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 000000000..26b5c6116 --- /dev/null +++ b/shell/hush_test/hush-misc/exitcode_EACCES.tests | |||
@@ -0,0 +1,2 @@ | |||
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 000000000..d8315503f --- /dev/null +++ b/shell/hush_test/hush-misc/exitcode_ENOENT.right | |||
@@ -0,0 +1,2 @@ | |||
1 | hush: can't execute './does_not_exist_for_sure': No such file or directory | ||
2 | 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 000000000..7f1b88a99 --- /dev/null +++ b/shell/hush_test/hush-misc/exitcode_ENOENT.tests | |||
@@ -0,0 +1,2 @@ | |||
1 | ./does_not_exist_for_sure | ||
2 | echo $? | ||