summaryrefslogtreecommitdiff
path: root/t/chainlint/subshell-one-liner.test
blob: 37fa643c20a9bf65a573c1f67c3c6729006767b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(
# LINT: nested one-liner subshell
	(foo && bar) &&
	(foo && bar) |
	(foo && bar) >baz &&
 
# LINT: nested one-liner subshell missing internal "&&"
	(foo; bar) &&
	(foo; bar) |
	(foo; bar) >baz &&
 
# LINT: nested one-liner subshell with "|| exit"
	(foo || exit 1) &&
	(foo || exit 1) |
	(foo || exit 1) >baz &&
 
# LINT: nested one-liner subshell lacking ending "&&"
	(foo && bar)
 
# LINT: nested one-liner subshell missing internal "&&" and lacking ending "&&"
	(foo && bar; baz)
 
	foobar
)