diff options
author | djm@openbsd.org <djm@openbsd.org> | 2021-07-24 03:54:23 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2021-07-24 04:31:05 +0200 |
commit | 9d38074b5453c1abbdf888e80828c278d3b886ac (patch) | |
tree | e97612716bcd1e82d87dc2f1a0de73749c7a2172 /regress/unittests | |
parent | upstream: Simplify keygen-convert by using $SSH_KEYTYPES directly. (diff) | |
download | openssh-9d38074b5453c1abbdf888e80828c278d3b886ac.tar.xz openssh-9d38074b5453c1abbdf888e80828c278d3b886ac.zip |
upstream: test for first-match-wins in authorized_keys environment=
options
OpenBSD-Regress-ID: 1517c90276fe84b5dc5821c59f88877fcc34c0e8
Diffstat (limited to 'regress/unittests')
-rw-r--r-- | regress/unittests/authopt/tests.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/unittests/authopt/tests.c b/regress/unittests/authopt/tests.c index 8c51b3802..4e5526a0b 100644 --- a/regress/unittests/authopt/tests.c +++ b/regress/unittests/authopt/tests.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tests.c,v 1.1 2018/03/03 03:16:17 djm Exp $ */ +/* $OpenBSD: tests.c,v 1.2 2021/07/24 01:54:23 djm Exp $ */ /* * Regress test for keys options functions. @@ -270,6 +270,8 @@ test_authkeys_parse(void) } while (0) ARRAY_TEST("environment", "environment=\"foo=1\",environment=\"bar=2\"", env, nenv, "foo=1,bar=2"); + ARRAY_TEST("environment", "environment=\"foo=1\",environment=\"foo=2\"", + env, nenv, "foo=1"); ARRAY_TEST("permitopen", "permitopen=\"foo:123\",permitopen=\"bar:*\"", permitopen, npermitopen, "foo:123,bar:*"); #undef ARRAY_TEST |