xref: /freebsd/bin/sh/tests/builtins/exit1.0 (revision 22cf89c938886d14f5796fc49f9f020c23ea8eaf)
1
2# exit with an argument should overwrite the exit status in an EXIT trap.
3
4trap 'true; exit $?' 0
5false
6