forked from github/server
re-enable failing valgrind check with more flags
This commit is contained in:
parent
652136ee46
commit
ca6448ec23
|
@ -19,4 +19,4 @@ inifile
|
|||
s/runtests
|
||||
cd tests
|
||||
./write-reports.sh
|
||||
#./run-turn.sh
|
||||
./run-turn.sh
|
||||
|
|
|
@ -34,7 +34,7 @@ VALGRIND=`which valgrind`
|
|||
SERVER=../Debug/eressea/eressea
|
||||
if [ -n "$VALGRIND" ]; then
|
||||
SUPP=../share/ubuntu-12_04.supp
|
||||
SERVER="$VALGRIND --suppressions=$SUPP --error-exitcode=1 --leak-check=no $SERVER"
|
||||
SERVER="$VALGRIND --track-origins=yes --gen-suppressions=all --suppressions=$SUPP --error-exitcode=1 --leak-check=no $SERVER"
|
||||
fi
|
||||
echo "running $SERVER"
|
||||
$SERVER -t 184 ../scripts/run-turn.lua
|
||||
|
|
Loading…
Reference in New Issue