blob: 79a6ebd50e58b6976816f980f644b596837a7041 [file] [log] [blame]
Ron Yorstonea7d2f62017-01-03 11:18:23 +01001# 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:$?