summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/set-e/until3.0
blob: 2f779033fe4c927822ceaa1544eb8ea09d767c9c (plain) (blame)
1
2
3
4
5
6
7
8
9
# $FreeBSD: head/bin/sh/tests/set-e/until3.0 149791 2005-09-05 09:42:10Z stefanf $
set -e
f() {
	until false; do
		false
		break
	done
}
f || true