diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-09-24 05:13:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 05:13:55 -0700 |
commit | bc570b00641386f6c60b24bc2207661b7551ca10 (patch) | |
tree | 9bce911896cb8b9f87f61b2a5e4bb704f3204b99 /scripts/pvscheck.sh | |
parent | 55d1e630b4d66ecb774824c9839e7f5821d23341 (diff) | |
parent | 03ed72642ddfe6a603673efdc0998a154e581b88 (diff) | |
download | rneovim-bc570b00641386f6c60b24bc2207661b7551ca10.tar.gz rneovim-bc570b00641386f6c60b24bc2207661b7551ca10.tar.bz2 rneovim-bc570b00641386f6c60b24bc2207661b7551ca10.zip |
Merge #15774 fix(pvs): fix warnings, script
Diffstat (limited to 'scripts/pvscheck.sh')
-rwxr-xr-x | scripts/pvscheck.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/pvscheck.sh b/scripts/pvscheck.sh index aa27c94f29..904ff81700 100755 --- a/scripts/pvscheck.sh +++ b/scripts/pvscheck.sh @@ -373,13 +373,13 @@ run_analysis() {( analyze \ --lic-file PVS-Studio.lic \ --threads "$(get_jobs_num)" \ - --exclude-path src/nvim/xdiff \ + --exclude-path src/xdiff \ --output-file PVS-studio.log \ --file build/compile_commands.json \ --sourcetree-root . || true rm -rf PVS-studio.{xml,err,tsk,html.d} - local plog_args="PVS-studio.log --srcRoot . --excludedCodes V011,V1042" + local plog_args="PVS-studio.log --srcRoot . --excludedCodes V011,V1042,V1051,V1074" 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 |