# $FreeBSD: stable/10/bin/sh/tests/builtins/trap17.0 297750 2016-04-09 14:24:17Z jilles $ # This use-after-free bug probably needs non-default settings to show up. v1=nothing v2=nothing trap 'trap "echo bad" USR1 v1=trap_received v2=trap_invoked :' USR1 kill -USR1 "$$" [ "$v1.$v2" = trap_received.trap_invoked ]