freeswitch/libs/xmlrpc-c/src/test/eftest_wrapper.sh
Michael Jerris 3abb7730b2 add xmlrpc-c 1.03.14 to in tree libs
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3772 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-12-21 03:57:49 +00:00

18 lines
421 B
Bash

#!/bin/sh
echo "*** Testing for heap block overruns..."
efrpctest
if ! test $?; then exit 1; fi
echo "*** Testing for heap block underruns..."
EF_PROTECT_BELOW=1 efrpctest
if ! test $?; then exit 1; fi
echo "*** Testing for access to freed heap blocks..."
EF_PROTECT_FREE=1 efrpctest
if ! test $?; then exit 1; fi
echo "*** Testing for single-byte overruns..."
EF_ALIGNMENT=0 efrpctest
if ! test $?; then exit 1; fi