opnsense-src/tools/regression/bin/sh/builtins/trap4.0
Jilles Tjoelker e23a66ac83 sh: Do not call exitshell() from evalcommand() unless evalcommand() forked
itself.

This ensures that certain traps caused by builtins are executed.
2011-01-05 23:17:29 +00:00

17 lines
259 B
Text

# $FreeBSD$
T=$(mktemp -d ${TMPDIR:-/tmp}/sh-test.XXXXXX)
trap 'rm -rf $T' 0
cd $T || exit 3
mkfifo fifo1
v=$(
exec 3>&1
: <fifo1 &
{
wait $!
trap 'trap "" PIPE; echo trapped >&3 2>/dev/null' PIPE
echo x 2>/dev/null
} >fifo1
)
test "$v" = trapped