diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2016-09-30 11:55:21 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2016-09-30 11:55:21 +0000 |
commit | 2b6f59f4862e957035fa91b52a33c7cf0a32061b (patch) | |
tree | dad432bd53409eb0bc718aa71ba00bfebaa66151 /regress/usr.bin/ssh/unittests | |
parent | 6c6ac0f455429960edc766fd7bd1946d369ae7c9 (diff) |
In ssh tests set REGRESS_FAIL_EARLY with ?= so that the environment
can change it.
OK djm@
Diffstat (limited to 'regress/usr.bin/ssh/unittests')
-rw-r--r-- | regress/usr.bin/ssh/unittests/Makefile | 5 | ||||
-rw-r--r-- | regress/usr.bin/ssh/unittests/Makefile.inc | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/regress/usr.bin/ssh/unittests/Makefile b/regress/usr.bin/ssh/unittests/Makefile index e70b1664431..947f6377fcf 100644 --- a/regress/usr.bin/ssh/unittests/Makefile +++ b/regress/usr.bin/ssh/unittests/Makefile @@ -1,5 +1,6 @@ -# $OpenBSD: Makefile,v 1.7 2016/08/19 06:44:13 djm Exp $ -REGRESS_FAIL_EARLY= yes +# $OpenBSD: Makefile,v 1.8 2016/09/30 11:55:20 bluhm Exp $ + +REGRESS_FAIL_EARLY?= yes SUBDIR= test_helper sshbuf sshkey bitmap kex hostkeys utf8 match .include <bsd.subdir.mk> diff --git a/regress/usr.bin/ssh/unittests/Makefile.inc b/regress/usr.bin/ssh/unittests/Makefile.inc index 33a7365a8d5..34b7993a61b 100644 --- a/regress/usr.bin/ssh/unittests/Makefile.inc +++ b/regress/usr.bin/ssh/unittests/Makefile.inc @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile.inc,v 1.7 2016/09/28 20:09:52 bluhm Exp $ +# $OpenBSD: Makefile.inc,v 1.8 2016/09/30 11:55:20 bluhm Exp $ + +REGRESS_FAIL_EARLY?= yes .include <bsd.own.mk> .include <bsd.obj.mk> -REGRESS_FAIL_EARLY= yes - # XXX detect from ssh binary? SSH1?= no OPENSSL?= yes |