diff options
author | Eric Sunshine <sunshine@sunshineco.com> | 2024-09-10 06:10:13 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-09-10 19:01:40 +0200 |
commit | a13ff419636c65321aee71ed000574a4a607be56 (patch) | |
tree | 0c7afc9b3c2b6bfc4426c3289c596e3ee0a84f88 /t/test-lib.sh | |
parent | chainlint: make error messages self-explanatory (diff) | |
download | git-a13ff419636c65321aee71ed000574a4a607be56.tar.xz git-a13ff419636c65321aee71ed000574a4a607be56.zip |
chainlint: reduce annotation noise-factor
When chainlint detects a problem in a test definition, it highlights the
offending code with a "?!...?!" annotation. The rather curious "?!"
decoration was chosen to draw the reader's attention to the problem area
and to act as a good "needle" when using the terminal's search feature
to "jump" to the next problem.
Later, chainlint learned to color its output when sent to a terminal.
Problem annotations are colored with a red background which stands out
well from surrounding text, thus easily draws the reader's attention.
Together with the preceding change which gave all problem annotations a
uniform "LINT:" prefix, the noisy "?!" decoration has become superfluous
as a search "needle" so omit it when output is colored.
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r-- | t/test-lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 54247604cb..278d1215f1 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -1606,7 +1606,7 @@ if test "${GIT_TEST_CHAIN_LINT:-1}" != 0 && test "${GIT_TEST_EXT_CHAIN_LINT:-1}" != 0 then "$PERL_PATH" "$TEST_DIRECTORY/chainlint.pl" "$0" || - BUG "lint error (see '?!...!? annotations above)" + BUG "lint error (see 'LINT' annotations above)" fi # Last-minute variable setup |