diff options
author | Jun Aruga <[email protected]> | 2024-02-21 10:37:53 +0100 |
---|---|---|
committer | git <[email protected]> | 2024-03-13 15:47:26 +0000 |
commit | 171791426b748ec5109f579d8aaa9b450a6fd02a (patch) | |
tree | ddac4f7238e8826e7aee22a8b9c461282c0e0d31 /test | |
parent | dd5e625d7bcb7dc849fdbc2ad8053f9c2724efb4 (diff) |
[ruby/openssl] Revert "omit tests related legacy provider"
This reverts commit https://github.com/ruby/openssl/commit/9b7543d58869.
The case not providing the legacy provider can happen not only in FreeBSD but
also in other platforms. The fix is addressed in the next commit.
https://github.com/ruby/openssl/commit/8c26fc26a1
Diffstat (limited to 'test')
-rw-r--r-- | test/openssl/test_provider.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/openssl/test_provider.rb b/test/openssl/test_provider.rb index 52865d5388..d0e6678587 100644 --- a/test/openssl/test_provider.rb +++ b/test/openssl/test_provider.rb @@ -12,8 +12,6 @@ class OpenSSL::TestProvider < OpenSSL::TestCase end def test_openssl_provider_names - omit if /freebsd/ =~ RUBY_PLATFORM - with_openssl <<-'end;' legacy_provider = OpenSSL::Provider.load("legacy") assert_equal(2, OpenSSL::Provider.provider_names.size) @@ -35,8 +33,6 @@ class OpenSSL::TestProvider < OpenSSL::TestCase end def test_openssl_legacy_provider - omit if /freebsd/ =~ RUBY_PLATFORM - with_openssl(<<-'end;') OpenSSL::Provider.load("legacy") algo = "RC4" |