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