Skip to content

Commit 3889434

Browse files
author
Felipe Zimmerle
committed
Adds verbose quality check
Vera++ and ccpcheck are not outputing to the stderr instead stdout allowing the buildbot to extract some numbers about it.
1 parent b77e901 commit 3889434

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ test-regression:
3737
(cd tests && $(MAKE) test-regression)
3838

3939
cppcheck:
40-
(cppcheck . --enable=all --force)
40+
cppcheck . --enable=all --force
4141

4242
check-coding-style:
43-
(vera++ -rule L004 -param max-line-length=80 `(find . -iname "*.c" ; find . -iname "*.h") | xargs`)
44-
(vera++ -rule L001 `(find . -iname "*.c" ; find . -iname "*.h") | xargs`)
43+
vera++ -rule L004 -param max-line-length=80 `(find . -iname "*.c" ; find . -iname "*.h") | xargs`
44+
vera++ -rule L001 `(find . -iname "*.c" ; find . -iname "*.h") | xargs`
4545

4646
.PHONY: test

0 commit comments

Comments
 (0)