diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-01-11 16:49:37 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-11 16:49:38 -0800 |
commit | d0f945622b11319b857061c1857d7e9ba94ceb14 (patch) | |
tree | 2b047845238452314f4ff17d776ef46c91c67bda /t | |
parent | b663af57c31cb6353bd86e39b880cc9602262958 (diff) | |
parent | 81127d74c4367b383b6949846a4ccbd185012734 (diff) | |
download | git-d0f945622b11319b857061c1857d7e9ba94ceb14.tar.gz |
Merge branch 'jk/enable-test-lint-by-default' into maint
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
Diffstat (limited to 't')
-rw-r--r-- | t/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/Makefile b/t/Makefile index 3025418ff5..5c6de8169b 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)) |