aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/parameters/exitstatus1.0
blob: 709600eb0cc6f3bb6fae06d77a28f54c8e7906a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
# $FreeBSD: head/bin/sh/tests/parameters/exitstatus1.0 185232 2008-11-23 20:27:03Z stefanf $
f() {
	[ $? = $1 ] || exit 1
}

true
f 0
false
f 1