scripts/valgrind-wrapper.sh
author Peter Kovacs <kpeter@inf.elte.hu>
Fri, 13 Nov 2009 00:37:55 +0100
changeset 886 7ef7a5fbb85d
permissions -rwxr-xr-x
Rename a private type in MCF classes (#180)

The new MCF algorithms define a private map type VectorMap,
which could be misleading, since there is an other VectorMap
defined in lemon/bits/vector_map.h. Thus the new type is
is renamed to StaticVectorMap.
     1 #!/bin/sh
     2 
     3 # Run in valgrind, with leak checking enabled
     4 
     5 valgrind -q --leak-check=full "$@" 2> .valgrind-log
     6 
     7 # Save the test result
     8 
     9 result="$?"
    10 
    11 # Valgrind should generate no error messages
    12 
    13 log_contents="`cat .valgrind-log`"
    14 
    15 if [ "$log_contents" != "" ]; then
    16         cat .valgrind-log >&2
    17         result=1
    18 fi
    19 
    20 rm -f .valgrind-log
    21 
    22 exit $result