tests: turn on test-lint by default
commit81127d74c4367b383b6949846a4ccbd185012734
authorJeff King <peff@peff.net>
Thu, 3 Jan 2013 07:17:51 +0000 (3 02:17 -0500)
committerJunio C Hamano <gitster@pobox.com>
Thu, 3 Jan 2013 16:03:46 +0000 (3 08:03 -0800)
tree2074cc7b9d0850f613996b43087fd516a9235d17
parent5d417842efeafb6e109db7574196901c4e95d273
tests: turn on test-lint by default

The test Makefile knows about a few "lint" checks for common
errors. However, they are not enabled as part of "make test"
by default, which means that many people do not bother
running them. Since they are both quick to run and accurate
(i.e., no false positives), there should be no harm in
turning them on and helping submitters catch errors earlier.

We could just set:

  TEST_LINT = test-lint

to enable all tests. But that would be unnecessarily
annoying later on if we add slower or less accurate tests
that should not be part of the default. Instead, we name the
tests individually.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/Makefile