diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2015-04-23 07:01:19 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-05-10 03:35:16 +0200 |
commit | 0ef1de742be2ee4b10381193fe90730925b7f027 (patch) | |
tree | d0ea46047bd2c32b140b22f4ab2f9ccc01b4b35d | |
parent | upstream commit (diff) | |
download | openssh-0ef1de742be2ee4b10381193fe90730925b7f027.tar.xz openssh-0ef1de742be2ee4b10381193fe90730925b7f027.zip |
upstream commit
Add a simple regression test for sshd's configuration
parser. Right now, all it does is run the output of sshd -T back through
itself and ensure the output is valid and invariant.
-rw-r--r-- | regress/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/Makefile b/regress/Makefile index 252fb2eeb..68df9b391 100644 --- a/regress/Makefile +++ b/regress/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.79 2015/03/16 22:46:14 djm Exp $ +# $OpenBSD: Makefile,v 1.80 2015/04/23 05:01:19 dtucker Exp $ REGRESS_TARGETS= unit t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t-exec tests: prep $(REGRESS_TARGETS) @@ -54,6 +54,7 @@ LTESTS= connect \ multiplex \ reexec \ brokenkeys \ + cfgparse \ cfgmatch \ addrmatch \ localcommand \ |