aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-misc/exitcode2.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash_test/ash-misc/exitcode2.tests')
-rwxr-xr-xshell/ash_test/ash-misc/exitcode2.tests12
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
2cat >test.sh <<EOF
3)
4EOF
5chmod +x test.sh
6$THIS_SH ./test.sh
7echo Done:$?
8rm -f test.sh
9
10# redirection error with special builtin should return status 1
11(eval cat <does_not_exist)
12echo Done:$?