xref: /freebsd/bin/sh/tests/builtins/break2.0 (revision e9a994639b2af232f994ba2ad23ca45a17718d2b)
1# $FreeBSD$
2
3# It is not immediately obvious that this should work, and someone probably
4# relies on it.
5
6while :; do
7	trap 'break' USR1
8	kill -USR1 $$
9	echo bad
10	exit 1
11done
12echo good
13