summaryrefslogtreecommitdiff
path: root/corebinutils/sh/tests/builtins/trap17.0
blob: 580c41fc249840bfe4b99e3f58733965da56846b (plain)
1
2
3
4
5
6
7
8
9
# 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 ]