diff options
| author | Ron Yorston <rmy@pobox.com> | 2017-01-04 11:32:33 +0000 |
|---|---|---|
| committer | Ron Yorston <rmy@pobox.com> | 2017-01-04 11:41:38 +0000 |
| commit | f9cf712f8a640ac2d250dfa77dd809ab033f618a (patch) | |
| tree | c8f6135b5842e0110ca54d6690ab95b28792bb1e /shell/ash_test/ash-misc/exitcode2.tests | |
| parent | 71ecc8033e6989996057b32577e71148fd544596 (diff) | |
| parent | c6725b0af68238a456690146adec763c04f66c82 (diff) | |
| download | busybox-w32-f9cf712f8a640ac2d250dfa77dd809ab033f618a.tar.gz busybox-w32-f9cf712f8a640ac2d250dfa77dd809ab033f618a.tar.bz2 busybox-w32-f9cf712f8a640ac2d250dfa77dd809ab033f618a.zip | |
Merge branch 'busybox' into merge
Diffstat (limited to 'shell/ash_test/ash-misc/exitcode2.tests')
| -rwxr-xr-x | shell/ash_test/ash-misc/exitcode2.tests | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/shell/ash_test/ash-misc/exitcode2.tests b/shell/ash_test/ash-misc/exitcode2.tests new file mode 100755 index 000000000..79a6ebd50 --- /dev/null +++ b/shell/ash_test/ash-misc/exitcode2.tests | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | # syntax error should return status 2 | ||
| 2 | cat >test.sh <<EOF | ||
| 3 | ) | ||
| 4 | EOF | ||
| 5 | chmod +x test.sh | ||
| 6 | $THIS_SH ./test.sh | ||
| 7 | echo Done:$? | ||
| 8 | rm -f test.sh | ||
| 9 | |||
| 10 | # redirection error with special builtin should return status 1 | ||
| 11 | (eval cat <does_not_exist) | ||
| 12 | echo Done:$? | ||
