summary refs log tree commit diff
path: root/bin/cash/tests/set-e/for1.0
blob: c76d03cc65abad53ddb29c8e2b5b79ea1dc72966 (plain) (blame)
1
2
3
4
5
6
7
8
9
# $FreeBSD: releng/12.0/bin/sh/tests/set-e/for1.0 149791 2005-09-05 09:42:10Z stefanf $
set -e
f() {
	for i in a b c; do
		false
		true
	done
}
f || true