]> git.ipfire.org Git - thirdparty/git.git/blame - t/chainlint/one-liner.test
Merge branch 'gc/branch-recurse-submodules-fix'
[thirdparty/git.git] / t / chainlint / one-liner.test
CommitLineData
90a88039
ES
1# LINT: top-level one-liner subshell
2(foo && bar) &&
3(foo && bar) |
4(foo && bar) >baz &&
5
1ad0780a 6# LINT: top-level one-liner subshell missing internal "&&" and broken &&-chain
90a88039
ES
7(foo; bar) &&
8(foo; bar) |
0cca54c7 9(foo; bar) >baz &&
90a88039
ES
10
11# LINT: ";" in string not misinterpreted as broken &&-chain
12(foo "bar; baz")