summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2019-11-27 13:08:22 +0900
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2020-02-06 22:47:07 +1300
commit8fbd933c7a7c73a190ecc6416d581ab3e91b2b82 (patch)
tree38db7def2016b653bfc590b516e154276fb1a181 /test
parent0aaf274211d4b4877b266bc1ad406db4fd8160ab (diff)
downloadruby-openssl-8fbd933c7a7c73a190ecc6416d581ab3e91b2b82.tar.gz
Merge in changes to tests from upstream.
Diffstat (limited to 'test')
-rw-r--r--test/test_ssl.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/test_ssl.rb b/test/test_ssl.rb
index 45277555..e9eaf2ec 100644
--- a/test/test_ssl.rb
+++ b/test/test_ssl.rb
@@ -305,6 +305,19 @@ class OpenSSL::TestSSL < OpenSSL::SSLTestCase
}
end
+ # TODO fix this test
+ # def test_sysread_nonblock_and_syswrite_nonblock_keywords
+ # start_server do |port|
+ # server_connect(port) do |ssl|
+ # assert_warning("") do
+ # ssl.send(:syswrite_nonblock, "12", exception: false)
+ # ssl.send(:sysread_nonblock, 1, exception: false) rescue nil
+ # ssl.send(:sysread_nonblock, 1, String.new, exception: false) rescue nil
+ # end
+ # end
+ # end
+ # end
+
def test_sync_close
start_server do |port|
begin