initial load of upstream version 1.06.32
[xmlrpc-c] / src / test / eftest_wrapper.sh
1 #!/bin/sh
2
3 echo "*** Testing for heap block overruns..."
4 efrpctest
5 if ! test $?; then exit 1; fi
6  
7 echo "*** Testing for heap block underruns..."
8 EF_PROTECT_BELOW=1 efrpctest
9 if ! test $?; then exit 1; fi
10
11 echo "*** Testing for access to freed heap blocks..."
12 EF_PROTECT_FREE=1 efrpctest
13 if ! test $?; then exit 1; fi
14
15 echo "*** Testing for single-byte overruns..."
16 EF_ALIGNMENT=0 efrpctest
17 if ! test $?; then exit 1; fi