]> AND Public Git Repository - simgrid.git/blobdiff - tools/jenkins/Coverage.sh
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
jenkins-tsan: use mmap by default, as using RTLD_DEEPBIND is not supported by TSan
[simgrid.git] / tools / jenkins / Coverage.sh
index a8503ca934d21f5e76ae27098c082668bec48f71..2d9a3320102e9484c136d487b8e0018f3b85a32e 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/usr/bin/env sh
 
 set -e
 
@@ -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