summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-01-09 16:26:46 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-01-09 16:26:46 (GMT)
commit7f27ac56a549fff45e85dae48cec713a340b0616 (patch)
treee3709285db1770a9e114851878aff08fa5f7681b
parentea12a7d6960c90dc0465a944b9e4426c8a972006 (diff)
parent81127d74c4367b383b6949846a4ccbd185012734 (diff)
downloadgit-7f27ac56a549fff45e85dae48cec713a340b0616.zip
git-7f27ac56a549fff45e85dae48cec713a340b0616.tar.gz
git-7f27ac56a549fff45e85dae48cec713a340b0616.tar.bz2
Merge branch 'jk/enable-test-lint-by-default'
We have two simple and quick tests to catch common mistakes when writing test scripts, but we did not run them by default when running tests. * jk/enable-test-lint-by-default: tests: turn on test-lint by default
-rw-r--r--t/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/Makefile b/t/Makefile
index 3025418..5c6de81 100644
--- a/t/Makefile
+++ b/t/Makefile
@@ -13,6 +13,7 @@ TAR ?= $(TAR)
RM ?= rm -f
PROVE ?= prove
DEFAULT_TEST_TARGET ?= test
+TEST_LINT ?= test-lint-duplicates test-lint-executable
# Shell quote;
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))