[connect-privsep.sh]
     Remove the Z flag from the list of malloc options as it
     was removed from malloc.c 10 days ago.

     OK from miod@
This commit is contained in:
Damien Miller 2014-05-15 15:08:40 +10:00
parent d0b69fe904
commit 167685756f
2 changed files with 8 additions and 2 deletions

View File

@ -105,6 +105,12 @@
- dtucker@cvs.openbsd.org 2014/05/03 18:46:14 - dtucker@cvs.openbsd.org 2014/05/03 18:46:14
[proxy-connect.sh] [proxy-connect.sh]
Add tests for with and without compression, with and without privsep. Add tests for with and without compression, with and without privsep.
- logan@cvs.openbsd.org 2014/05/04 10:40:59
[connect-privsep.sh]
Remove the Z flag from the list of malloc options as it
was removed from malloc.c 10 days ago.
OK from miod@
20140430 20140430
- (dtucker) [defines.h] Define __GNUC_PREREQ__ macro if we don't already - (dtucker) [defines.h] Define __GNUC_PREREQ__ macro if we don't already

View File

@ -1,4 +1,4 @@
# $OpenBSD: connect-privsep.sh,v 1.4 2012/07/02 14:37:06 dtucker Exp $ # $OpenBSD: connect-privsep.sh,v 1.5 2014/05/04 10:40:59 logan Exp $
# Placed in the Public Domain. # Placed in the Public Domain.
tid="proxy connect with privsep" tid="proxy connect with privsep"
@ -26,7 +26,7 @@ done
# Because sandbox is sensitive to changes in libc, especially malloc, retest # Because sandbox is sensitive to changes in libc, especially malloc, retest
# with every malloc.conf option (and none). # with every malloc.conf option (and none).
for m in '' A F G H J P R S X Z '<' '>'; do for m in '' A F G H J P R S X '<' '>'; do
for p in 1 2; do for p in 1 2; do
env MALLOC_OPTIONS="$m" ${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true env MALLOC_OPTIONS="$m" ${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then