From 4ce8521ee4a72e050bd187c2986708c5f98c7442 Mon Sep 17 00:00:00 2001 From: ZyX Date: Sun, 22 Apr 2018 20:54:17 +0300 Subject: pvscheck: Disable V011 warning --- scripts/pvscheck.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/pvscheck.sh b/scripts/pvscheck.sh index 62051b191d..11b672c515 100755 --- a/scripts/pvscheck.sh +++ b/scripts/pvscheck.sh @@ -365,10 +365,11 @@ run_analysis() {( --sourcetree-root . || true rm -rf PVS-studio.{xml,err,tsk,html.d} - plog-converter -r . -t xml -o PVS-studio.xml PVS-studio.log - plog-converter -r . -t errorfile -o PVS-studio.err PVS-studio.log - plog-converter -r . -t tasklist -o PVS-studio.tsk PVS-studio.log - plog-converter -r . -t fullhtml -o PVS-studio.html.d PVS-studio.log + local plog_args="PVS-studio.log --srcRoot . --excludedCodes V011" + plog-converter $plog_args --renderTypes xml --output PVS-studio.xml + plog-converter $plog_args --renderTypes errorfile --output PVS-studio.err + plog-converter $plog_args --renderTypes tasklist --output PVS-studio.tsk + plog-converter $plog_args --renderTypes fullhtml --output PVS-studio.html.d )} detect_url() { -- cgit