diff options
Diffstat (limited to 'regress')
-rw-r--r-- | regress/Makefile | 4 | ||||
-rw-r--r-- | regress/connect-privsep.sh | 4 | ||||
-rw-r--r-- | regress/unittests/Makefile.inc | 2 | ||||
-rw-r--r-- | regress/unittests/bitmap/Makefile | 4 | ||||
-rw-r--r-- | regress/unittests/hostkeys/Makefile | 4 | ||||
-rw-r--r-- | regress/unittests/kex/Makefile | 4 | ||||
-rw-r--r-- | regress/unittests/match/Makefile | 4 | ||||
-rw-r--r-- | regress/unittests/sshbuf/Makefile | 2 | ||||
-rw-r--r-- | regress/unittests/sshkey/Makefile | 4 | ||||
-rw-r--r-- | regress/unittests/utf8/Makefile | 4 |
10 files changed, 12 insertions, 24 deletions
diff --git a/regress/Makefile b/regress/Makefile index bc1555717..1f71761fa 100644 --- a/regress/Makefile +++ b/regress/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.92 2016/10/31 23:45:08 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.93 2016/11/01 13:43:27 tb Exp $ |
2 | 2 | ||
3 | REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t-exec | 3 | REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t-exec |
4 | tests: prep $(REGRESS_TARGETS) | 4 | tests: prep $(REGRESS_TARGETS) |
@@ -116,7 +116,7 @@ CLEANFILES= *.core actual agent-key.* authorized_keys_${USERNAME} \ | |||
116 | SUDO_CLEAN+= /var/run/testdata_${USERNAME} /var/run/keycommand_${USERNAME} | 116 | SUDO_CLEAN+= /var/run/testdata_${USERNAME} /var/run/keycommand_${USERNAME} |
117 | 117 | ||
118 | # Enable all malloc(3) randomisations and checks | 118 | # Enable all malloc(3) randomisations and checks |
119 | TEST_ENV= "MALLOC_OPTIONS=FGJRX" | 119 | TEST_ENV= "MALLOC_OPTIONS=CFGJRSUX" |
120 | 120 | ||
121 | TEST_SSH_SSHKEYGEN?=ssh-keygen | 121 | TEST_SSH_SSHKEYGEN?=ssh-keygen |
122 | 122 | ||
diff --git a/regress/connect-privsep.sh b/regress/connect-privsep.sh index edfdbf0bf..81cedc7e5 100644 --- a/regress/connect-privsep.sh +++ b/regress/connect-privsep.sh | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: connect-privsep.sh,v 1.7 2016/10/31 23:45:08 tb Exp $ | 1 | # $OpenBSD: connect-privsep.sh,v 1.8 2016/11/01 13:43:27 tb Exp $ |
2 | # Placed in the Public Domain. | 2 | # Placed in the Public Domain. |
3 | 3 | ||
4 | tid="proxy connect with privsep" | 4 | tid="proxy connect with privsep" |
@@ -27,7 +27,7 @@ done | |||
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). |
29 | if [ -z "TEST_MALLOC_OPTIONS" ]; then | 29 | if [ -z "TEST_MALLOC_OPTIONS" ]; then |
30 | mopts="F G H J R S X < >" | 30 | mopts="C F G J R S U X < >" |
31 | else | 31 | else |
32 | mopts=`echo $TEST_MALLOC_OPTIONS | sed 's/./& /g'` | 32 | mopts=`echo $TEST_MALLOC_OPTIONS | sed 's/./& /g'` |
33 | fi | 33 | fi |
diff --git a/regress/unittests/Makefile.inc b/regress/unittests/Makefile.inc index 20d32a7bf..3d9eaba5c 100644 --- a/regress/unittests/Makefile.inc +++ b/regress/unittests/Makefile.inc | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile.inc,v 1.7 2016/09/28 20:09:52 bluhm Exp $ | 1 | # $OpenBSD: Makefile.inc,v 1.9 2016/11/01 13:43:27 tb Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | .include <bsd.obj.mk> | 4 | .include <bsd.obj.mk> |
diff --git a/regress/unittests/bitmap/Makefile b/regress/unittests/bitmap/Makefile index b3b7d12c7..bd21949f8 100644 --- a/regress/unittests/bitmap/Makefile +++ b/regress/unittests/bitmap/Makefile | |||
@@ -1,6 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.2 2016/10/31 23:45:08 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2016/11/01 13:43:27 tb Exp $ |
2 | |||
3 | TEST_ENV= "MALLOC_OPTIONS=FGJRX" | ||
4 | 2 | ||
5 | PROG=test_bitmap | 3 | PROG=test_bitmap |
6 | SRCS=tests.c | 4 | SRCS=tests.c |
diff --git a/regress/unittests/hostkeys/Makefile b/regress/unittests/hostkeys/Makefile index 43968c701..ae3c342bd 100644 --- a/regress/unittests/hostkeys/Makefile +++ b/regress/unittests/hostkeys/Makefile | |||
@@ -1,6 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.2 2016/10/31 23:45:08 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2016/11/01 13:43:27 tb Exp $ |
2 | |||
3 | TEST_ENV= "MALLOC_OPTIONS=FGJRX" | ||
4 | 2 | ||
5 | PROG=test_hostkeys | 3 | PROG=test_hostkeys |
6 | SRCS=tests.c test_iterate.c | 4 | SRCS=tests.c test_iterate.c |
diff --git a/regress/unittests/kex/Makefile b/regress/unittests/kex/Makefile index e268daad2..7ed312675 100644 --- a/regress/unittests/kex/Makefile +++ b/regress/unittests/kex/Makefile | |||
@@ -1,6 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.3 2016/10/31 23:45:09 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.4 2016/11/01 13:43:27 tb Exp $ |
2 | |||
3 | TEST_ENV= "MALLOC_OPTIONS=FGJRX" | ||
4 | 2 | ||
5 | PROG=test_kex | 3 | PROG=test_kex |
6 | SRCS=tests.c test_kex.c | 4 | SRCS=tests.c test_kex.c |
diff --git a/regress/unittests/match/Makefile b/regress/unittests/match/Makefile index 3197ece99..bd4aed844 100644 --- a/regress/unittests/match/Makefile +++ b/regress/unittests/match/Makefile | |||
@@ -1,6 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.2 2016/10/31 23:45:09 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2016/11/01 13:43:27 tb Exp $ |
2 | |||
3 | TEST_ENV= "MALLOC_OPTIONS=FGJRX" | ||
4 | 2 | ||
5 | PROG=test_match | 3 | PROG=test_match |
6 | SRCS=tests.c | 4 | SRCS=tests.c |
diff --git a/regress/unittests/sshbuf/Makefile b/regress/unittests/sshbuf/Makefile index 85f99ac38..69b27566b 100644 --- a/regress/unittests/sshbuf/Makefile +++ b/regress/unittests/sshbuf/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2014/04/30 05:32:00 djm Exp $ | 1 | # $OpenBSD: Makefile,v 1.5 2016/11/01 13:43:27 tb Exp $ |
2 | 2 | ||
3 | PROG=test_sshbuf | 3 | PROG=test_sshbuf |
4 | SRCS=tests.c | 4 | SRCS=tests.c |
diff --git a/regress/unittests/sshkey/Makefile b/regress/unittests/sshkey/Makefile index 8cfa3aa54..cfbfcf8f1 100644 --- a/regress/unittests/sshkey/Makefile +++ b/regress/unittests/sshkey/Makefile | |||
@@ -1,6 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.3 2016/10/31 23:45:09 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.4 2016/11/01 13:43:27 tb Exp $ |
2 | |||
3 | TEST_ENV= "MALLOC_OPTIONS=FGJRX" | ||
4 | 2 | ||
5 | PROG=test_sshkey | 3 | PROG=test_sshkey |
6 | SRCS=tests.c test_sshkey.c test_file.c test_fuzz.c common.c | 4 | SRCS=tests.c test_sshkey.c test_file.c test_fuzz.c common.c |
diff --git a/regress/unittests/utf8/Makefile b/regress/unittests/utf8/Makefile index 85cf7b81f..a975264fc 100644 --- a/regress/unittests/utf8/Makefile +++ b/regress/unittests/utf8/Makefile | |||
@@ -1,6 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.3 2016/10/31 23:45:09 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.4 2016/11/01 13:43:27 tb Exp $ |
2 | |||
3 | TEST_ENV= "MALLOC_OPTIONS=CFGJRSUX" | ||
4 | 2 | ||
5 | PROG=test_utf8 | 3 | PROG=test_utf8 |
6 | SRCS=tests.c | 4 | SRCS=tests.c |