aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/trap13.0
blob: 1069b8f027a83df31adc07da34d4f0af0a00e1f7 (plain) (blame)
1
2
3
4
5
6
7
8
# $FreeBSD: head/bin/sh/tests/builtins/trap13.0 257399 2013-10-30 21:36:15Z jilles $

{
	trap 'exit 0' INT
	${SH} -c 'kill -INT $PPID'
	exit 3
} &
wait $!