aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2019-11-02 11:18:01 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2019-11-02 11:46:47 +0000
commit86b0fe361c5177b33e42622c566e76faf11ffd30 (patch)
tree924b47602073ba739aaa62de63f73a752450327f
parente7acb32a5a48d57ffd6dc17f6a9de60630f82c7e (diff)
validate-clang-check (PD): Display also warning
Change-Id: Ie9f36ddbd95b5ebe94b9fc5e2a18ab12c1fb031f Reviewed-on: https://code.wireshark.org/review/34903 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
-rwxr-xr-xtools/validate-clang-check.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/validate-clang-check.py b/tools/validate-clang-check.py
index 61e1d9f8b4..a77a9d5434 100755
--- a/tools/validate-clang-check.py
+++ b/tools/validate-clang-check.py
@@ -14,6 +14,7 @@ COMMIT_FILES=$( git diff-index --cached --name-status HEAD^ | grep -v "^D" | cut
for FILE in $COMMIT_FILES; do
+ clang-check ../$FILE
clang-check -analyze ../$FILE
done