5238710eb4
The --chain-lint option uses heuristics and knowledge of shell syntax to detect broken &&-chains in subshells by pure textual inspection. The heuristics handle a range of stylistic variations in existing tests (evolved over the years), however, they are still best-guesses. As such, it is possible for future changes to accidentally break assumptions upon which the heuristics are based. Protect against this possibility by adding tests which check the linter itself for correctness. In addition to protecting against regressions, these tests help document (for humans) expected behavior, which is important since the linter's implementation language ('sed') does not necessarily lend itself to easy comprehension. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
26 lines
466 B
Plaintext
26 lines
466 B
Plaintext
(
|
|
# LINT: missing internal "&&" and ending "&&"
|
|
cat foo ; echo bar
|
|
# LINT: final statement before ")" only missing internal "&&"
|
|
cat foo ; echo bar
|
|
) &&
|
|
(
|
|
# LINT: missing internal "&&"
|
|
cat foo ; echo bar &&
|
|
cat foo ; echo bar
|
|
) &&
|
|
(
|
|
# LINT: not fooled by semicolon in string
|
|
echo "foo; bar" &&
|
|
cat foo; echo bar
|
|
) &&
|
|
(
|
|
# LINT: unnecessary terminating semicolon
|
|
foo;
|
|
) &&
|
|
(cd foo &&
|
|
for i in a b c; do
|
|
# LINT: unnecessary terminating semicolon
|
|
echo;
|
|
done)
|