diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-01-30 16:55:14 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-01-30 16:55:14 +0900 |
commit | b432867429d8a311b2c73230b5cdd4833b972337 (patch) | |
tree | a8282db4d7c9238e527184200c6bf17073a086eb | |
parent | 4ffef59bb1c83b0e552b3e50b6bb1c1a34673d1c (diff) |
Skip OpenSSL::TestHMAC#test_dup when running with RHEL9
-rw-r--r-- | test/openssl/test_hmac.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/openssl/test_hmac.rb b/test/openssl/test_hmac.rb index 3cb707448a..b62d928d86 100644 --- a/test/openssl/test_hmac.rb +++ b/test/openssl/test_hmac.rb @@ -21,6 +21,9 @@ class OpenSSL::TestHMAC < OpenSSL::TestCase end def test_dup + require "etc" + pend "[Bug #19386] OpenSSL 3.0.1 of RHEL9 is not working this test" if Etc.uname[:release] =~ /el9/ + h1 = OpenSSL::HMAC.new("KEY", "MD5") h1.update("DATA") h = h1.dup |