scripts/valgrind-wrapper.sh
author Alpar Juttner <alpar@cs.elte.hu>
Wed, 09 Jul 2014 14:40:32 +0200
changeset 1119 1552352f9798
permissions -rwxr-xr-x
Restore cmake-2.8 compatibility (#502)

Fix cmake-2.8 incompatibility introduced in [fe4ff72e2f14].
Thanks to amluto for reporting the regression
     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