X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3bd92711ac656103203476388be68eedcfdc6052..ce144e83bf4f839dd32721b606e88345bc711e5a:/tools/jenkins/Coverage.sh diff --git a/tools/jenkins/Coverage.sh b/tools/jenkins/Coverage.sh index aeab2768ff..bf9a0d5929 100755 --- a/tools/jenkins/Coverage.sh +++ b/tools/jenkins/Coverage.sh @@ -1,14 +1,29 @@ #!/usr/bin/env sh -set -e - -BUILDFOLDER=$WORKSPACE/build - die() { echo "$@" exit 1 } +[ -n "$WORKSPACE" ] || die "No WORKSPACE" +[ -d "$WORKSPACE" ] || die "WORKSPACE ($WORKSPACE) does not exist" + +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-* +find "$WORKSPACE" -name "hs_err_pid*.log" -exec rm -f {} + +ls /tmp +df -h +echo "XXXX Let's go" + +set -e + +BUILDFOLDER=$WORKSPACE/build + ### Check the node installation pkg_check() { @@ -27,9 +42,6 @@ pkg_check xsltproc gcovr ant cover2cover.py ### Cleanup previous runs -[ -n "$WORKSPACE" ] || die "No WORKSPACE" -[ -d "$WORKSPACE" ] || die "WORKSPACE ($WORKSPACE) does not exist" - do_cleanup() { for d do @@ -108,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