summaryrefslogtreecommitdiff
path: root/corebinutils/sh/tests/builtins/local1.0
blob: e5278d492639f11ae9f6b616648a91735a16e715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# A commonly used but non-POSIX builtin.

f() {
	local x
	x=2
	[ "$x" = 2 ]
}
x=1
f || exit 3
[ "$x" = 1 ] || exit 3
f || exit 3
[ "$x" = 1 ] || exit 3