summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJun Aruga <[email protected]>2024-02-21 10:37:53 +0100
committergit <[email protected]>2024-03-13 15:47:26 +0000
commit171791426b748ec5109f579d8aaa9b450a6fd02a (patch)
treeddac4f7238e8826e7aee22a8b9c461282c0e0d31
parentdd5e625d7bcb7dc849fdbc2ad8053f9c2724efb4 (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
-rw-r--r--test/openssl/test_provider.rb4
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"