]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/break2.0
shell_cmds-198.tar.gz
[apple/shell_cmds.git] / sh / tests / builtins / break2.0
1 # $FreeBSD$
2
3 # It is not immediately obvious that this should work, and someone probably
4 # relies on it.
5
6 while :; do
7 trap 'break' USR1
8 kill -USR1 $$
9 echo bad
10 exit 1
11 done
12 echo good