summaryrefslogtreecommitdiffstats
path: root/tools/regression/bin/sh/builtins/trap12.0
blob: 8c62ffd2b570a5c2859397de52bf0858edb50eb8 (plain)
1
2
3
4
5
6
7
8
9
10
# $FreeBSD$

f() {
	trap 'return 42' USR1
	kill -USR1 $$
	return 3
}
f
r=$?
[ "$r" = 42 ]
OpenPOWER on IntegriCloud