X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fc3ef5bd2ac94edcf603cc05f2fdd2497ef1027f..9d655676dd422d3945f05aab0c74268b641115e4:/tools/jenkins/Coverage.sh diff --git a/tools/jenkins/Coverage.sh b/tools/jenkins/Coverage.sh index c87bd31abc..4e31381f6e 100755 --- a/tools/jenkins/Coverage.sh +++ b/tools/jenkins/Coverage.sh @@ -11,6 +11,7 @@ die() { echo "XXXX Cleanup previous attempts. Remaining content of /tmp:" rm -f /tmp/cc* rm -f /tmp/*.so +rm -f /tmp/*.so.* rm -rf /tmp/simgrid-java* rm -rf /var/tmp/simgrid-java* rm -rf /tmp/jvm-* @@ -65,9 +66,9 @@ rm -rf xml_coverage.xml ctest -D ExperimentalStart || true -cmake -Denable_documentation=OFF -Denable_lua=ON \ +cmake -Denable_documentation=OFF \ -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON \ - -Denable_jedule=ON -Denable_mallocators=ON \ + -Denable_mallocators=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 \ @@ -95,7 +96,7 @@ if [ -f Testing/TAG ] ; then ant -f "$WORKSPACE"/tools/jenkins/jacoco.xml -Dexamplesrcdir="$WORKSPACE" -Dbuilddir="$BUILDFOLDER"/"${sourcepath}" -Djarfile="$BUILDFOLDER"/simgrid.jar -Djacocodir=${JACOCO_PATH}/lib #convert jacoco xml reports in cobertura xml reports cover2cover.py "$BUILDFOLDER"/"${sourcepath}"/report.xml .. ../src/bindings/java src/bindings/java > "$BUILDFOLDER"/java_coverage_${i}.xml - #save jacoco xml report as sonar only allows it + #save jacoco xml report as sonar only allows it mv "$BUILDFOLDER"/"${sourcepath}"/report.xml "$BUILDFOLDER"/jacoco_cov_${i}.xml i=$((i + 1)) done @@ -119,8 +120,9 @@ if [ -f Testing/TAG ] ; then pvs-studio-analyzer analyze -f "$BUILDFOLDER"/compile_commands.json -o "$WORKSPACE"/pvs.log $EXCLUDEDPATH -j$NUMPROC # Disable: # V521 Such expressions using the ',' operator are dangerous. (-> commas in catch.hpp), + # V576 Incorrect format. (-> gives false alarms, and already checked elsewhere) # V1042 This file is marked with copyleft license, which requires you to open the derived source code. # V1056 The predefined identifier '__func__' always contains the string 'operator()' inside function body of the overloaded 'operator()'. - plog-converter -t xml -o "$WORKSPACE"/pvs.plog -d V521,V1042,V1056 "$WORKSPACE"/pvs.log + plog-converter -t xml -o "$WORKSPACE"/pvs.plog -d V521,V576,V1042,V1056 "$WORKSPACE"/pvs.log fi || exit 42