summaryrefslogtreecommitdiff
path: root/test/openssl
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2022-12-24 02:02:13 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-12-26 15:09:21 +0900
commit24c9adcaebf8ffaaf3f4eb68fe43f2ff23688543 (patch)
treeaeaf7794cf24c008e360b4425416ef530059341c /test/openssl
parentcea6951ecf31b1d4e93d102cc8f08822470d4d1a (diff)
downloadruby-24c9adcaebf8ffaaf3f4eb68fe43f2ff23688543.tar.gz
[ruby/openssl] test/openssl/test_pkey.rb: allow failures in test_s_generate_parameters
Commit https://github.com/ruby/openssl/commit/f2e2a5e5ed8e ("test/openssl/test_pkey.rb: allow failures in test_s_generate_parameters", 2022-12-23) was completely bogus. The problem in OpenSSL 3.0.0-3.0.5 is that errors from the callback are sometimes silently suppressed. https://github.com/ruby/openssl/commit/ccc1594492
Diffstat (limited to 'test/openssl')
-rw-r--r--test/openssl/test_pkey.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/openssl/test_pkey.rb b/test/openssl/test_pkey.rb
index 1219f3f1d7..2b99e8f374 100644
--- a/test/openssl/test_pkey.rb
+++ b/test/openssl/test_pkey.rb
@@ -40,6 +40,11 @@ class OpenSSL::TestPKey < OpenSSL::PKeyTestCase
}
# Parameter generation callback is called
+ if openssl?(3, 0, 0, 0) && !openssl?(3, 0, 0, 6)
+ # Errors in BN_GENCB were not properly handled. This special pend is to
+ # suppress failures on Ubuntu 22.04, which uses OpenSSL 3.0.2.
+ pend "unstable test on OpenSSL 3.0.[0-5]"
+ end
cb_called = []
assert_raise(RuntimeError) {
OpenSSL::PKey.generate_parameters("DSA") { |*args|
@@ -47,11 +52,6 @@ class OpenSSL::TestPKey < OpenSSL::PKeyTestCase
raise "exit!" if cb_called.size == 3
}
}
- if !cb_called && openssl?(3, 0, 0) && !openssl?(3, 0, 6)
- # Errors in BN_GENCB were not properly handled. This special pend is to
- # suppress failures on Ubuntu 22.04, which uses OpenSSL 3.0.2.
- pend "unstable test on OpenSSL 3.0.[0-5]"
- end
assert_not_empty cb_called
end