From 388943440cc9b8c6fdea09f5e365a2e5a3e792e2 Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Wed, 4 Dec 2013 06:19:11 -0800 Subject: [PATCH] Adds verbose quality check Vera++ and ccpcheck are not outputing to the stderr instead stdout allowing the buildbot to extract some numbers about it. --- Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 2e7cd529..fbe0d724 100644 --- a/Makefile.am +++ b/Makefile.am @@ -37,10 +37,10 @@ test-regression: (cd tests && $(MAKE) test-regression) cppcheck: - (cppcheck . --enable=all --force) + cppcheck . --enable=all --force check-coding-style: - (vera++ -rule L004 -param max-line-length=80 `(find . -iname "*.c" ; find . -iname "*.h") | xargs`) - (vera++ -rule L001 `(find . -iname "*.c" ; find . -iname "*.h") | xargs`) + vera++ -rule L004 -param max-line-length=80 `(find . -iname "*.c" ; find . -iname "*.h") | xargs` + vera++ -rule L001 `(find . -iname "*.c" ; find . -iname "*.h") | xargs` .PHONY: test