Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Don't cleanup valgrind files in coverage ...
authordegomme <augustin.degomme@unibas.ch>
Sat, 16 Apr 2016 21:58:42 +0000 (23:58 +0200)
committerdegomme <augustin.degomme@unibas.ch>
Sat, 16 Apr 2016 21:58:42 +0000 (23:58 +0200)
tools/jenkins/Coverage.sh
tools/jenkins/DynamicAnalysis.sh

index d40f9d0..ccfb85b 100755 (executable)
@@ -15,7 +15,6 @@ do_cleanup() {
       rm -rf "$d" || die "Could not remote $d"
     fi
   done
-  find $WORKSPACE -name "memcheck_test_*.memcheck" -exec rm {} \;
 }
 
 ### Check the node installation
index 6a388f4..9638f76 100755 (executable)
@@ -58,7 +58,7 @@ ctest -D ExperimentalTest || true
 
 cd $WORKSPACE/build
 if [ -f Testing/TAG ] ; then
-   find . -iname "*.memcheck" -exec mv {} $WORKSPACE/memcheck \;
+   find $WORKSPACE -iname "*.memcheck" -exec mv {} $WORKSPACE/memcheck \;
    mv Testing/`head -n 1 < Testing/TAG`/Test.xml  $WORKSPACE/DynamicAnalysis.xml
 fi