Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b2ed44aa99c55b1b563f5112d860e405f33f3dbd
[simgrid.git] / tools / jenkins / Coverage.sh
1 #!/bin/sh
2
3 set -e
4
5 BUILDFOLDER=$WORKSPACE/build
6
7 die() {
8     echo "$@"
9     exit 1
10 }
11
12 do_cleanup() {
13   for d in "$BUILDFOLDER"
14   do
15     if [ -d "$d" ]
16     then
17       rm -rf "$d" || die "Could not remote $d"
18     fi
19   done
20 }
21
22 ### Check the node installation
23
24 for pkg in xsltproc gcovr ant cover2cover.py
25 do
26    if command -v $pkg
27    then 
28       echo "$pkg is installed. Good."
29    else 
30       die "please install $pkg before proceeding" 
31    fi
32 done
33
34 ### Cleanup previous runs
35
36 ! [ -z "$WORKSPACE" ] || die "No WORKSPACE"
37 [ -d "$WORKSPACE" ] || die "WORKSPACE ($WORKSPACE) does not exist"
38
39 do_cleanup
40
41 for d in "$BUILDFOLDER"
42 do
43   mkdir "$d" || die "Could not create $d"
44 done
45
46 NUMPROC="$(nproc)" || NUMPROC=1
47
48
49 cd $BUILDFOLDER
50
51 ctest -D ExperimentalStart || true
52
53 cmake -Denable_documentation=OFF -Denable_lua=ON -Denable_java=ON \
54       -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON \
55       -Denable_jedule=ON -Denable_mallocators=ON \
56       -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_model-checking=ON \
57       -Denable_memcheck=OFF -Denable_memcheck_xml=OFF -Denable_smpi_ISP_testsuite=ON -Denable_coverage=ON $WORKSPACE
58
59 make -j$NUMPROC
60 JACOCO_PATH="/usr/local/share/jacoco"
61 export JAVA_TOOL_OPTIONS="-javaagent:${JACOCO_PATH}/lib/jacocoagent.jar"
62
63 ctest -D ExperimentalTest -j$NUMPROC || true
64 ctest -D ExperimentalCoverage || true
65
66 unset JAVA_TOOL_OPTIONS
67 if [ -f Testing/TAG ] ; then
68
69   files=$( find . -name "jacoco.exec" )
70   i=0
71   for file in $files
72   do
73     sourcepath=$( dirname $file )
74     #convert jacoco reports in xml ones
75     ant -f $WORKSPACE/tools/jenkins/jacoco.xml -Dexamplesrcdir=$WORKSPACE -Dbuilddir=$BUILDFOLDER/${sourcepath} -Djarfile=$BUILDFOLDER/simgrid.jar -Djacocodir=${JACOCO_PATH}/lib
76     #convert jacoco xml reports in cobertura xml reports
77     cover2cover.py $BUILDFOLDER/${sourcepath}/report.xml .. ../src/bindings/java src/bindings/java > $WORKSPACE/java_coverage_${i}.xml
78     i=$(($i + 1))
79   done
80
81    #convert all gcov reports to xml cobertura reports
82    gcovr -r .. --xml-pretty -e teshsuite.* -u -o $WORKSPACE/xml_coverage.xml
83    xsltproc $WORKSPACE/tools/jenkins/ctest2junit.xsl Testing/$( head -n 1 < Testing/TAG )/Test.xml > CTestResults_memcheck.xml
84    mv CTestResults_memcheck.xml $WORKSPACE
85 fi