aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/set-e/return1.0
blob: d157059422b2948fc3b0f4d419c428973c66ff91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# $FreeBSD: head/bin/sh/tests/set-e/return1.0 149788 2005-09-04 21:29:09Z stefanf $
set -e

# PR 77067, 85267
f() {
	return 1
	true
}

f || true
exit 0