diff options
author | 2022-07-04 07:30:41 +0900 | |
---|---|---|
committer | 2022-08-02 00:54:57 +0900 | |
commit | 9eb9bf0460b2bba954452126bc02cf74aeb731cd (patch) | |
tree | cf2a751eca7ada7a8658f765e4788971e20bb790 /tools/check-codingstyle.sh | |
parent | e8a05c6f1ac288a8cfa5b0837313fec8fb7aadaf (diff) |
Add qualification tools to librefop repo
The librefop use gcov, gnucomplexity and clang-format to realize qualification.
This patch add these helper script into source tree.
Bug-AGL: SPEC-4500
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Change-Id: I014a0a315b08688470a540b397790aaee41d7efd
Diffstat (limited to 'tools/check-codingstyle.sh')
-rwxr-xr-x | tools/check-codingstyle.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/check-codingstyle.sh b/tools/check-codingstyle.sh new file mode 100755 index 0000000..118887c --- /dev/null +++ b/tools/check-codingstyle.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +clang-format --dry-run lib/*.c +clang-format --dry-run lib/*.h +clang-format --dry-run include/*.h |