summaryrefslogtreecommitdiffstats
path: root/test/recipes
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2024-06-17 12:19:45 +0200
committerTomas Mraz <tomas@openssl.org>2024-06-21 10:03:42 +0200
commit2f0b4974dfbd9bc71e1164e0742fc7fdb2b2b70e (patch)
tree91c3162d969c7af6babe2b7d3680da6daf8e5f9a /test/recipes
parent8d380f85da215012570347f156e642d69909877a (diff)
Add test for ASN1_item_verify()
This is a test for https://github.com/openssl/openssl/issues/24575 Original idea by Theo Buehler. Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/24576)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/25-test_x509.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/recipes/25-test_x509.t b/test/recipes/25-test_x509.t
index 860a970805..52ba7d1821 100644
--- a/test/recipes/25-test_x509.t
+++ b/test/recipes/25-test_x509.t
@@ -355,5 +355,7 @@ ok(run(app(["openssl", "x509", "-req", "-text",
SKIP: {
skip "EC is not supported by this OpenSSL build", 1
if disabled("ec");
- ok(run(test(["x509_test"])), "running x509_test");
+ my $psscert = srctop_file(@certs, "ee-self-signed-pss.pem");
+
+ ok(run(test(["x509_test", $psscert])), "running x509_test");
}