t5537: prepare for changing protocol.file.allow
[alt-git.git] / t / chainlint / cuddled.test
blob257b5b5eed3a23a6549f3a6f2b5ea77a776ad7e9
1 # LINT: first subshell statement cuddled with opening "("
2 (cd foo &&
3         bar
4 ) &&
6 # LINT: same with missing "&&"
7 (cd foo
8         bar
9 ) &&
11 # LINT: closing ")" cuddled with final subshell statement
13         cd foo &&
14         bar) &&
16 # LINT: "(" and ")" cuddled with first and final subshell statements
17 (cd foo &&
18         bar) &&
20 # LINT: same with missing "&&"
21 (cd foo
22         bar)