summary refs log tree commit diff
path: root/bin/1sh/tests/set-e/until3.0
blob: cc39584cca9d1c1a963ac3c8ffbba0839d8b1a09 (plain) (blame)
1
2
3
4
5
6
7
8
9
# $FreeBSD: releng/12.1/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