[PATCH] tests: turn on test-lint-shell-syntax by default
From: Torsten Bögershausen <hidden>
Date: 2016-06-15 22:55:43
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Torsten Bögershausen <hidden>
Date: 2016-06-15 22:55:43
Subsystem:
the rest · Maintainer:
Linus Torvalds
The test Makefile has a default set of lint tests which are run as part of "make test". The macro TEST_LINT defaults to "test-lint-duplicates test-lint-executable". Add test-lint-shell-syntax here, to detect non-portable shell syntax early. Signed-off-by: Torsten Bögershausen <redacted> --- t/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/t/Makefile b/t/Makefile
index 1923cc1..6fa2b80 100644
--- a/t/Makefile
+++ b/t/Makefile@@ -13,7 +13,7 @@ TAR ?= $(TAR) RM ?= rm -f PROVE ?= prove DEFAULT_TEST_TARGET ?= test -TEST_LINT ?= test-lint-duplicates test-lint-executable +TEST_LINT ?= test-lint-duplicates test-lint-executable test-lint-shell-syntax # Shell quote; SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
--
1.8.0.197.g5a90748