Merge pull request #4727 from bfredl/citestlint

travis: run testlint in lint build
This commit is contained in:
Justin M. Keyes
2016-05-11 09:09:25 -04:00

View File

@@ -94,7 +94,7 @@ functionaltest: | nvim
functionaltest-lua: | nvim
+$(BUILD_CMD) -C build functionaltest-lua
testlint: | nvim
testlint: | build/.ran-cmake deps
$(BUILD_CMD) -C build testlint
unittest: | nvim
@@ -115,10 +115,12 @@ distclean: clean
install: | nvim
+$(BUILD_CMD) -C build install
lint:
clint:
cmake -DLINT_PRG=./clint.py \
-DLINT_DIR=src \
-DLINT_SUPPRESS_URL="$(DOC_DOWNLOAD_URL_BASE)$(CLINT_ERRORS_FILE_PATH)" \
-P cmake/RunLint.cmake
.PHONY: test testlint functionaltest unittest lint clean distclean nvim libnvim cmake deps install
lint: clint testlint
.PHONY: test testlint functionaltest unittest lint clint clean distclean nvim libnvim cmake deps install