* test/openssl/test_pair.rb: skipped tests if openssl doesn't support

ECDH cipher.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52412 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2015-10-31 11:16:02 +00:00
Родитель bd362b70ba
Коммит a8438d3033
2 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Sat Oct 31 20:15:48 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* test/openssl/test_pair.rb: skipped tests if openssl doesn't support
ECDH cipher.
Sat Oct 31 14:58:10 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* man/ruby.1 (SYNOPSIS): remove extraneous space for -F option as

Просмотреть файл

@ -372,6 +372,12 @@ module OpenSSL::TestPairM
accepted = s2.accept
assert called, 'ecdh callback should be called'
rescue OpenSSL::SSL::SSLError => e
if e.message =~ /no cipher match/
skip "ECDH cipher not supported."
else
raise e
end
ensure
th.join if th
s1.close if s1