Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-04-06 23:38:31 +0300
committerJunio C Hamano <gitster@pobox.com>2023-04-06 23:38:31 +0300
commit0b94009649f7bca3a4f4e29acdb26d38b6e4abf5 (patch)
treea8f6f831b401cdfbc317c6862a036636400332b7 /t/Makefile
parent6047b28eb7e1a0b0061c5310034f7b5683ea401a (diff)
parentcc48ddd937f9d852da73e188e4a3216cb038c421 (diff)
Merge branch 'jk/chainlint-fixes'
Test framework fix. * jk/chainlint-fixes: tests: skip test_eval_ in internal chain-lint tests: drop here-doc check from internal chain-linter tests: diagnose unclosed here-doc in chainlint.pl tests: replace chainlint subshell with a function tests: run internal chain-linter under "make test"
Diffstat (limited to 't/Makefile')
-rw-r--r--t/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/Makefile b/t/Makefile
index 88fa504957..3e00cdd801 100644
--- a/t/Makefile
+++ b/t/Makefile
@@ -44,8 +44,8 @@ CHAINLINT = '$(PERL_PATH_SQ)' chainlint.pl
# `test-chainlint` (which is a dependency of `test-lint`, `test` and `prove`)
# checks all tests in all scripts via a single invocation, so tell individual
-# scripts not to "chainlint" themselves
-CHAINLINTSUPPRESS = GIT_TEST_CHAIN_LINT=0 && export GIT_TEST_CHAIN_LINT &&
+# scripts not to run the external "chainlint.pl" script themselves
+CHAINLINTSUPPRESS = GIT_TEST_EXT_CHAIN_LINT=0 && export GIT_TEST_EXT_CHAIN_LINT &&
all: $(DEFAULT_TEST_TARGET)