diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2021-08-27 16:15:43 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2021-08-27 16:15:43 +0000 |
commit | 18ce8447111681415dfd982ff6c5eb4bde9b768e (patch) | |
tree | 10159aa389971c4edfb319a34aee33003128654c /regress/lib/libcrypto/x509 | |
parent | d494c40d7e468c00a96ac132d3447e533e7b72cc (diff) |
Add regress test testing having the root cert in the intermediate bundle
Diffstat (limited to 'regress/lib/libcrypto/x509')
-rw-r--r-- | regress/lib/libcrypto/x509/verify.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/regress/lib/libcrypto/x509/verify.c b/regress/lib/libcrypto/x509/verify.c index 9ef68cd5ab0..259854ef12f 100644 --- a/regress/lib/libcrypto/x509/verify.c +++ b/regress/lib/libcrypto/x509/verify.c @@ -1,4 +1,4 @@ -/* $OpenBSD: verify.c,v 1.5 2020/11/18 06:56:07 tb Exp $ */ +/* $OpenBSD: verify.c,v 1.6 2021/08/27 16:15:42 beck Exp $ */ /* * Copyright (c) 2020 Joel Sing <jsing@openbsd.org> * Copyright (c) 2020 Bob Beck <beck@openbsd.org> @@ -239,6 +239,10 @@ struct verify_cert_test verify_cert_tests[] = { .want_chains = 0, }, { + .id = "2c", + .want_chains = 1, + }, + { .id = "3a", .want_chains = 1, }, |