From: Augustin Degomme Date: Wed, 18 Mar 2020 20:51:55 +0000 (+0100) Subject: add pvs-studio analyze to coverage build X-Git-Tag: v3.26~735 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/1529b745b0910d291ff8c2ed84ebad74f1ec56fe add pvs-studio analyze to coverage build --- diff --git a/tools/jenkins/Coverage.sh b/tools/jenkins/Coverage.sh index 3cc69738ac..98673bec55 100755 --- a/tools/jenkins/Coverage.sh +++ b/tools/jenkins/Coverage.sh @@ -60,7 +60,7 @@ cmake -Denable_documentation=OFF -Denable_lua=ON \ -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_model-checking=ON \ -Denable_smpi_papi=ON \ -Denable_memcheck=OFF -Denable_memcheck_xml=OFF -Denable_smpi_ISP_testsuite=ON \ - -Denable_coverage=ON -DLTO_EXTRA_FLAG="auto" $WORKSPACE + -Denable_coverage=ON -DLTO_EXTRA_FLAG="auto" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON $WORKSPACE #build with sonarqube scanner wrapper /home/ci/build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-outputs make -j$NUMPROC tests @@ -95,12 +95,17 @@ if [ -f Testing/TAG ] ; then /usr/bin/python3-coverage combine /usr/bin/python3-coverage xml -i -o ./python_coverage.xml - cd $WORKSPACE - #convert all gcov reports to xml cobertura reports - gcovr -r . --xml-pretty -e teshsuite -u -o $BUILDFOLDER/xml_coverage.xml - xsltproc $WORKSPACE/tools/jenkins/ctest2junit.xsl build/Testing/$( head -n 1 < build/Testing/TAG )/Test.xml > CTestResults_memcheck.xml + cd $WORKSPACE + #convert all gcov reports to xml cobertura reports + gcovr -r . --xml-pretty -e teshsuite -u -o $BUILDFOLDER/xml_coverage.xml + xsltproc $WORKSPACE/tools/jenkins/ctest2junit.xsl build/Testing/$( head -n 1 < build/Testing/TAG )/Test.xml > CTestResults_memcheck.xml - #generate sloccount report - sloccount --duplicates --wide --details $WORKSPACE | grep -v -e '.git' -e 'mpich3-test' -e 'sloccount.sc' -e 'isp/umpire' -e 'build/' -e 'xml_coverage.xml' -e 'CTestResults_memcheck.xml' -e 'DynamicAnalysis.xml' > $WORKSPACE/sloccount.sc + #generate sloccount report + sloccount --duplicates --wide --details $WORKSPACE | grep -v -e '.git' -e 'mpich3-test' -e 'sloccount.sc' -e 'isp/umpire' -e 'build/' -e 'xml_coverage.xml' -e 'CTestResults_memcheck.xml' -e 'DynamicAnalysis.xml' > $WORKSPACE/sloccount.sc + + #generate PVS-studio report + pvs-studio-analyzer analyze -f $BUILDFOLDER/compile_commands.json -o $WORKSPACE/pvs.log -e $WORKSPACE/src/xbt/automaton -j$NUMPROC + #disable V1042 (copyleft), V521 (commas in catch.hpp) + plog-converter -t html -o $WORKSPACE/pvs.html -d V1042,V521 $WORKSPACE/pvs.log fi || exit 42