summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2016-03-14 16:04:23 +1100
committerDarren Tucker <dtucker@zip.com.au>2016-03-14 16:04:23 +1100
commit732b463d37221722b1206f43aa59563766a6a968 (patch)
tree5780e15c7a2bcbeb18c8e82c2ccada23263f33d8
parentd29c5b9b3e9f27394ca97a364ed4bb4a55a59744 (diff)
Pass supported malloc options to connect-privsep.
This allows us to activate only the supported options during the malloc option portion of the connect-privsep test.
-rw-r--r--Makefile.in1
-rw-r--r--regress/connect-privsep.sh7
2 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 139e20a8c..af758d035 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -552,6 +552,7 @@ tests interop-tests t-exec: regress-prep regress-binaries $(TARGETS)
552 OBJ="$${BUILDDIR}/regress/" \ 552 OBJ="$${BUILDDIR}/regress/" \
553 PATH="$${BUILDDIR}:$${PATH}" \ 553 PATH="$${BUILDDIR}:$${PATH}" \
554 TEST_ENV=MALLOC_OPTIONS="@TEST_MALLOC_OPTIONS@" \ 554 TEST_ENV=MALLOC_OPTIONS="@TEST_MALLOC_OPTIONS@" \
555 TEST_MALLOC_OPTIONS="@TEST_MALLOC_OPTIONS@" \
555 TEST_SSH_SCP="$${TEST_SSH_SCP}" \ 556 TEST_SSH_SCP="$${TEST_SSH_SCP}" \
556 TEST_SSH_SSH="$${TEST_SSH_SSH}" \ 557 TEST_SSH_SSH="$${TEST_SSH_SSH}" \
557 TEST_SSH_SSHD="$${TEST_SSH_SSHD}" \ 558 TEST_SSH_SSHD="$${TEST_SSH_SSHD}" \
diff --git a/regress/connect-privsep.sh b/regress/connect-privsep.sh
index 9a51f5690..ea739f614 100644
--- a/regress/connect-privsep.sh
+++ b/regress/connect-privsep.sh
@@ -26,7 +26,12 @@ done
26 26
27# Because sandbox is sensitive to changes in libc, especially malloc, retest 27# Because sandbox is sensitive to changes in libc, especially malloc, retest
28# with every malloc.conf option (and none). 28# with every malloc.conf option (and none).
29for m in '' A F G H J P R S X '<' '>'; do 29if [ -z "TEST_MALLOC_OPTIONS" ]; then
30 mopts="A F G H J P R S X < >"
31else
32 mopts=`echo $TEST_MALLOC_OPTIONS | sed 's/./& /g'`
33fi
34for m in '' $mopts ; do
30 for p in ${SSH_PROTOCOLS}; do 35 for p in ${SSH_PROTOCOLS}; do
31 env MALLOC_OPTIONS="$m" ${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true 36 env MALLOC_OPTIONS="$m" ${SSH} -$p -F $OBJ/ssh_proxy 999.999.999.999 true
32 if [ $? -ne 0 ]; then 37 if [ $? -ne 0 ]; then