summaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-misc/exitcode2.tests (plain)
blob: 79a6ebd50e58b6976816f980f644b596837a7041
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:$?
13