summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-04-27 11:49:44 +0200
committerTomas Mraz <tomas@openssl.org>2021-04-29 11:36:12 +0200
commitc404e4fab3b4497a2d04bc9c171c5460b940bf91 (patch)
tree22a3d426fcb4d93a9ae2bef75d42693cd21ee495 /test
parent872b7979c7c5f5d1f412964eb57507505c7a2ff9 (diff)
Add test case for openssl crl -noout -hash output
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15044)
Diffstat (limited to 'test')
-rw-r--r--test/recipes/25-test_crl.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/recipes/25-test_crl.t b/test/recipes/25-test_crl.t
index 128ad116ff..a17383f043 100644
--- a/test/recipes/25-test_crl.t
+++ b/test/recipes/25-test_crl.t
@@ -15,7 +15,7 @@ use OpenSSL::Test qw/:DEFAULT srctop_file/;
setup("test_crl");
-plan tests => 7;
+plan tests => 8;
require_ok(srctop_file('test','recipes','tconversion.pl'));
@@ -35,6 +35,9 @@ ok(compare1stline([qw{openssl crl -noout -fingerprint -in},
ok(compare1stline([qw{openssl crl -noout -fingerprint -sha256 -in},
srctop_file('test', 'testcrl.pem')],
'SHA2-256 Fingerprint=B3:A9:FD:A7:2E:8C:3D:DF:D0:F1:C3:1A:96:60:B5:FD:B0:99:7C:7F:0E:E4:34:F5:DB:87:62:36:BC:F1:BC:1B'));
+ok(compare1stline([qw{openssl crl -noout -hash -in},
+ srctop_file('test', 'testcrl.pem')],
+ '106cd822'));
ok(run(app(["openssl", "crl", "-text", "-in", $pem, "-out", $out,
"-nameopt", "utf8"])));