Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add --no-compress-output flag to dynamic analysis flags as cmake spits out base64...
authorAugustin Degomme <augustin.degomme@unibas.ch>
Fri, 1 Sep 2017 14:14:20 +0000 (16:14 +0200)
committerAugustin Degomme <augustin.degomme@unibas.ch>
Fri, 1 Sep 2017 14:14:20 +0000 (16:14 +0200)
tools/jenkins/Coverage.sh
tools/jenkins/DynamicAnalysis.sh
tools/jenkins/Sanitizers.sh

index a8503ca..cfe1ed1 100755 (executable)
@@ -60,7 +60,7 @@ make -j$NUMPROC
 JACOCO_PATH="/usr/local/share/jacoco"
 export JAVA_TOOL_OPTIONS="-javaagent:${JACOCO_PATH}/lib/jacocoagent.jar"
 
-ctest -D ExperimentalTest -j$NUMPROC || true
+ctest --no-compress-output -D ExperimentalTest -j$NUMPROC || true
 ctest -D ExperimentalCoverage || true
 
 unset JAVA_TOOL_OPTIONS
index 9faa38b..53cbde7 100755 (executable)
@@ -57,7 +57,7 @@ cmake -Denable_documentation=OFF -Denable_lua=OFF  \
 
 
 make -j$NUMPROC
-ctest -D ExperimentalTest -j$NUMPROC || true
+ctest --no-compress-output -D ExperimentalTest -j$NUMPROC || true
 
 cd $WORKSPACE/build
 if [ -f Testing/TAG ] ; then
index d375d56..9c66b0d 100755 (executable)
@@ -81,7 +81,7 @@ cmake -Denable_documentation=OFF -Denable_lua=ON -Denable_java=OFF \
       -Denable_fortran=OFF ${SANITIZER_OPTIONS} $WORKSPACE
 
 make -j$NUMPROC
-ctest -D ExperimentalTest || true
+ctest --no-compress-output -D ExperimentalTest || true
 
 if [ -f Testing/TAG ] ; then
    xsltproc $WORKSPACE/tools/jenkins/ctest2junit.xsl Testing/$(head -n 1 < Testing/TAG)/Test.xml > CTestResults_${SANITIZER}.xml