mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-25 00:22:35 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3772 d0543943-73ff-0310-b7d9-9358b9ac24b2
18 lines
421 B
Bash
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
|