Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update pipol scripts
[simgrid.git] / buildtools / pipol / MemCheck.sh
1 #!/bin/bash
2
3 if [ -e ./pipol ] ; then
4         rm -rf ./pipol/$PIPOL_HOST
5         mkdir ./pipol/$PIPOL_HOST
6 else
7         mkdir ./pipol
8         rm -rf ./pipol/$PIPOL_HOST
9         mkdir ./pipol/$PIPOL_HOST
10 fi
11 cd ./pipol/$PIPOL_HOST
12
13 svn checkout svn://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk simgrid-trunk --quiet
14 cd simgrid-trunk
15
16 perl ./buildtools/pipol/cmake.pl
17 perl ./buildtools/pipol/ruby.pl
18
19 #mem-check
20 cmake \
21 -Denable_lua=off \
22 -Denable_tracing=off \
23 -Denable_smpi=off \
24 -Denable_supernovae=off \
25 -Denable_compile_optimizations=off \
26 -Denable_compile_warnings=on \
27 -Denable_lib_static=off \
28 -Denable_model-checking=off \
29 -Denable_latency_bound_tracking=off \
30 -Denable_gtnets=off \
31 -Denable_jedule=off \
32 -Denable_memcheck=on ./
33 ctest -D ExperimentalStart
34 ctest -D ExperimentalConfigure
35 ctest -D ExperimentalBuild
36 ctest -D ExperimentalMemCheck
37 ctest -D ExperimentalSubmit