Skip to content

Commit 9493d4a

Browse files
committed
Skip OpenSSL::TestHMAC#test_dup when running with RHEL9
1 parent 79aa330 commit 9493d4a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/openssl/test_hmac.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ def test_hmac
2121
end
2222

2323
def test_dup
24+
require "etc"
25+
pend "[Bug #19386] OpenSSL 3.0.1 of RHEL9 is not working this test" if Etc.uname[:release] =~ /el9/
26+
2427
h1 = OpenSSL::HMAC.new("KEY", "MD5")
2528
h1.update("DATA")
2629
h = h1.dup

0 commit comments

Comments
 (0)