summary refs log tree commit diff
path: root/bin/1sh/tests/builtins/break2.0
blob: 521d504f9e49fc4242407e660a18bc2c5933f621 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# $FreeBSD: releng/12.1/bin/sh/tests/builtins/break2.0 211467 2010-08-18 20:26:50Z jilles $

# It is not immediately obvious that this should work, and someone probably
# relies on it.

while :; do
	trap 'break' USR1
	kill -USR1 $$
	echo bad
	exit 1
done
echo good