From: Felipe Contreras Date: Thu, 4 Apr 2013 15:36:17 +0000 (-0600) Subject: remote-helpers: fix the run of all tests X-Git-Tag: v1.8.3-rc0~92^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/e4f0e34c8968183119e5028ed77f3e3a6079e3cb?hp=--cc remote-helpers: fix the run of all tests We don't need to check for duplicate test numbers, we don't have them, and either way test-lint-duplicates doesn't work in this situation. Also, while we are on it, enable test-lint-shell-syntax to check for sh errors. Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- e4f0e34c8968183119e5028ed77f3e3a6079e3cb diff --git a/contrib/remote-helpers/Makefile b/contrib/remote-helpers/Makefile index 9a76575f78..239161de33 100644 --- a/contrib/remote-helpers/Makefile +++ b/contrib/remote-helpers/Makefile @@ -3,6 +3,7 @@ TESTS := $(wildcard test*.sh) export T := $(addprefix $(CURDIR)/,$(TESTS)) export MAKE := $(MAKE) -e export PATH := $(CURDIR):$(PATH) +export TEST_LINT := test-lint-executable test-lint-shell-syntax test: $(MAKE) -C ../../t $@