mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 07:44:29 +02:00
upstream commit
Clean up MALLOC_OPTIONS. For the unittests, move MALLOC_OPTIONS and TEST_ENV to unittets/Makefile.inc. ok otto Upstream-Regress-ID: 890d497e0a38eeddfebb11cc429098d76cf29f12
This commit is contained in:
parent
36f58e6822
commit
7da751d8b0
@ -1,4 +1,4 @@
|
|||||||
# $OpenBSD: Makefile,v 1.92 2016/10/31 23:45:08 tb Exp $
|
# $OpenBSD: Makefile,v 1.93 2016/11/01 13:43:27 tb Exp $
|
||||||
|
|
||||||
REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t-exec
|
REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t-exec
|
||||||
tests: prep $(REGRESS_TARGETS)
|
tests: prep $(REGRESS_TARGETS)
|
||||||
@ -116,7 +116,7 @@ CLEANFILES= *.core actual agent-key.* authorized_keys_${USERNAME} \
|
|||||||
SUDO_CLEAN+= /var/run/testdata_${USERNAME} /var/run/keycommand_${USERNAME}
|
SUDO_CLEAN+= /var/run/testdata_${USERNAME} /var/run/keycommand_${USERNAME}
|
||||||
|
|
||||||
# Enable all malloc(3) randomisations and checks
|
# Enable all malloc(3) randomisations and checks
|
||||||
TEST_ENV= "MALLOC_OPTIONS=FGJRX"
|
TEST_ENV= "MALLOC_OPTIONS=CFGJRSUX"
|
||||||
|
|
||||||
TEST_SSH_SSHKEYGEN?=ssh-keygen
|
TEST_SSH_SSHKEYGEN?=ssh-keygen
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $OpenBSD: connect-privsep.sh,v 1.7 2016/10/31 23:45:08 tb Exp $
|
# $OpenBSD: connect-privsep.sh,v 1.8 2016/11/01 13:43:27 tb Exp $
|
||||||
# Placed in the Public Domain.
|
# Placed in the Public Domain.
|
||||||
|
|
||||||
tid="proxy connect with privsep"
|
tid="proxy connect with privsep"
|
||||||
@ -27,7 +27,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).
|
||||||
if [ -z "TEST_MALLOC_OPTIONS" ]; then
|
if [ -z "TEST_MALLOC_OPTIONS" ]; then
|
||||||
mopts="F G H J R S X < >"
|
mopts="C F G J R S U X < >"
|
||||||
else
|
else
|
||||||
mopts=`echo $TEST_MALLOC_OPTIONS | sed 's/./& /g'`
|
mopts=`echo $TEST_MALLOC_OPTIONS | sed 's/./& /g'`
|
||||||
fi
|
fi
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $OpenBSD: Makefile.inc,v 1.7 2016/09/28 20:09:52 bluhm Exp $
|
# $OpenBSD: Makefile.inc,v 1.9 2016/11/01 13:43:27 tb Exp $
|
||||||
|
|
||||||
.include <bsd.own.mk>
|
.include <bsd.own.mk>
|
||||||
.include <bsd.obj.mk>
|
.include <bsd.obj.mk>
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
# $OpenBSD: Makefile,v 1.2 2016/10/31 23:45:08 tb Exp $
|
# $OpenBSD: Makefile,v 1.3 2016/11/01 13:43:27 tb Exp $
|
||||||
|
|
||||||
TEST_ENV= "MALLOC_OPTIONS=FGJRX"
|
|
||||||
|
|
||||||
PROG=test_bitmap
|
PROG=test_bitmap
|
||||||
SRCS=tests.c
|
SRCS=tests.c
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
# $OpenBSD: Makefile,v 1.2 2016/10/31 23:45:08 tb Exp $
|
# $OpenBSD: Makefile,v 1.3 2016/11/01 13:43:27 tb Exp $
|
||||||
|
|
||||||
TEST_ENV= "MALLOC_OPTIONS=FGJRX"
|
|
||||||
|
|
||||||
PROG=test_hostkeys
|
PROG=test_hostkeys
|
||||||
SRCS=tests.c test_iterate.c
|
SRCS=tests.c test_iterate.c
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
# $OpenBSD: Makefile,v 1.3 2016/10/31 23:45:09 tb Exp $
|
# $OpenBSD: Makefile,v 1.4 2016/11/01 13:43:27 tb Exp $
|
||||||
|
|
||||||
TEST_ENV= "MALLOC_OPTIONS=FGJRX"
|
|
||||||
|
|
||||||
PROG=test_kex
|
PROG=test_kex
|
||||||
SRCS=tests.c test_kex.c
|
SRCS=tests.c test_kex.c
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
# $OpenBSD: Makefile,v 1.2 2016/10/31 23:45:09 tb Exp $
|
# $OpenBSD: Makefile,v 1.3 2016/11/01 13:43:27 tb Exp $
|
||||||
|
|
||||||
TEST_ENV= "MALLOC_OPTIONS=FGJRX"
|
|
||||||
|
|
||||||
PROG=test_match
|
PROG=test_match
|
||||||
SRCS=tests.c
|
SRCS=tests.c
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $OpenBSD: Makefile,v 1.1 2014/04/30 05:32:00 djm Exp $
|
# $OpenBSD: Makefile,v 1.5 2016/11/01 13:43:27 tb Exp $
|
||||||
|
|
||||||
PROG=test_sshbuf
|
PROG=test_sshbuf
|
||||||
SRCS=tests.c
|
SRCS=tests.c
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
# $OpenBSD: Makefile,v 1.3 2016/10/31 23:45:09 tb Exp $
|
# $OpenBSD: Makefile,v 1.4 2016/11/01 13:43:27 tb Exp $
|
||||||
|
|
||||||
TEST_ENV= "MALLOC_OPTIONS=FGJRX"
|
|
||||||
|
|
||||||
PROG=test_sshkey
|
PROG=test_sshkey
|
||||||
SRCS=tests.c test_sshkey.c test_file.c test_fuzz.c common.c
|
SRCS=tests.c test_sshkey.c test_file.c test_fuzz.c common.c
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
# $OpenBSD: Makefile,v 1.3 2016/10/31 23:45:09 tb Exp $
|
# $OpenBSD: Makefile,v 1.4 2016/11/01 13:43:27 tb Exp $
|
||||||
|
|
||||||
TEST_ENV= "MALLOC_OPTIONS=CFGJRSUX"
|
|
||||||
|
|
||||||
PROG=test_utf8
|
PROG=test_utf8
|
||||||
SRCS=tests.c
|
SRCS=tests.c
|
||||||
|
Loading…
x
Reference in New Issue
Block a user