Skip to content

Commit

Permalink
Updated PVS-Studio script to generate HTML reports by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
orbitcowboy committed Jun 26, 2018
1 parent 14e5674 commit b4403d6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions runPVS_Studio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
#

make clean # Cleanup previous build
rm -f p.log # Remove intermediate log file
rm -f p.tasks # Remove task file
pvs-studio-analyzer trace -- make
rm -fR result # Remove results
rm -f p.log # Remove log file
pvs-studio-analyzer trace -- make -j3 CFLAGS=""
pvs-studio-analyzer analyze -o p.log
plog-converter -a GA:1,2 -t tasklist -o p.tasks p.log
plog-converter -a GA:1,2,3 -t fullhtml -o result p.log
xdg-open result/index.html

0 comments on commit b4403d6

Please sign in to comment.