diff options
author | Ron Yorston | 2015-10-30 19:05:55 +0000 |
---|---|---|
committer | Denys Vlasenko | 2015-10-30 22:19:06 +0100 |
commit | e939856c8724e357b3a7ba878563bfc957605504 (patch) | |
tree | b33cd359245d40e776317f3dc8a13c3c36b53510 /shell/ash_test/ash-misc/command2.right | |
parent | ace833028f12c236ac6d148158d10129e542b985 (diff) | |
download | busybox-e939856c8724e357b3a7ba878563bfc957605504.zip busybox-e939856c8724e357b3a7ba878563bfc957605504.tar.gz |
ash: add tests for failures of the exec and command builtins
The exec builtin should return an exit status of 127 if the command
can't be found. It doesn't: it returns 2.
If the command builtin is used to source a script that runs a second
script that doesn't exist ash should issue an error. Instead it seg
faults.
Signed-off-by: Ron Yorston <rmy@pobox.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test/ash-misc/command2.right')
-rw-r--r-- | shell/ash_test/ash-misc/command2.right | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/command2.right b/shell/ash_test/ash-misc/command2.right new file mode 100644 index 0000000..8d2165f --- /dev/null +++ b/shell/ash_test/ash-misc/command2.right @@ -0,0 +1,2 @@ +test1 +./command2.tests: ./test1.sh: line 1: ./test2.sh: Permission denied |