X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8dbe2058fb2e5717d3077dbaf890d3919405697e..e08142f6b96c100165667fe1b647a28b6357b5ed:/tools/jenkins/DynamicAnalysis.sh diff --git a/tools/jenkins/DynamicAnalysis.sh b/tools/jenkins/DynamicAnalysis.sh index 427d35f8f2..e0a87b8d61 100755 --- a/tools/jenkins/DynamicAnalysis.sh +++ b/tools/jenkins/DynamicAnalysis.sh @@ -7,40 +7,40 @@ die() { exit 1 } -do_cleanup() { - for d in "$WORKSPACE/build" "$WORKSPACE/memcheck" +### Check the node installation + +pkg_check() { + for pkg do - if [ -d "$d" ] + if command -v $pkg then - rm -rf "$d" || die "Could not remote $d" + echo "$pkg is installed. Good." + else + die "please install $pkg before proceeding" fi done - find $WORKSPACE -name "memcheck_test_*.memcheck" -exec rm {} \; } -### Check the node installation - -for pkg in valgrind pcregrep -do - if command -v $pkg - then - echo "$pkg is installed. Good." - else - die "please install $pkg before proceeding" - fi -done +pkg_check valgrind pcregrep ### Cleanup previous runs ! [ -z "$WORKSPACE" ] || die "No WORKSPACE" [ -d "$WORKSPACE" ] || die "WORKSPACE ($WORKSPACE) does not exist" -do_cleanup +do_cleanup() { + for d + do + if [ -d "$d" ] + then + rm -rf "$d" || die "Could not remove $d" + fi + mkdir "$d" || die "Could not create $d" + done + find $WORKSPACE -name "memcheck_test_*.memcheck" -exec rm {} \; +} -for d in "$WORKSPACE/build" "$WORKSPACE/memcheck" -do - mkdir "$d" || die "Could not create $d" -done +do_cleanup "$WORKSPACE/build" "$WORKSPACE/memcheck" NUMPROC="$(nproc)" || NUMPROC=1 @@ -49,14 +49,14 @@ cd $WORKSPACE/build ### Proceed with the tests ctest -D ExperimentalStart || true -cmake -Denable_documentation=OFF -Denable_lua=OFF \ +cmake -Denable_documentation=OFF -Denable_lua=OFF -Denable_python=OFF \ -Denable_compile_optimizations=OFF -Denable_compile_warnings=ON \ -Denable_jedule=OFF -Denable_mallocators=OFF \ - -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_model-checking=OFF \ - -Denable_memcheck_xml=ON $WORKSPACE + -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=OFF -Denable_model-checking=OFF \ + -Denable_memcheck_xml=ON -DLTO_EXTRA_FLAG="auto" $WORKSPACE -make -j$NUMPROC +make -j$NUMPROC tests ctest --no-compress-output -D ExperimentalTest -j$NUMPROC || true cd $WORKSPACE/build