summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-11-17 17:06:06 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-11-17 18:05:15 +0900
commit0683912db888b0421ce4c40ad450ccf75ad7e3f4 (patch)
tree50a15471333d3c28ef74ff2bb8b64573139459d2
parentcada6d85d0c1402463fa6066011169898933dd4e (diff)
Skip tests related TLS with Windows platform.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3776
-rw-r--r--test/net/smtp/test_sslcontext.rb2
-rw-r--r--test/net/smtp/test_starttls.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/net/smtp/test_sslcontext.rb b/test/net/smtp/test_sslcontext.rb
index f3f3b347ad..80afc1338e 100644
--- a/test/net/smtp/test_sslcontext.rb
+++ b/test/net/smtp/test_sslcontext.rb
@@ -125,4 +125,4 @@ module Net
end
end
-end
+end unless /mswin|mingw/ =~ RUBY_PLATFORM
diff --git a/test/net/smtp/test_starttls.rb b/test/net/smtp/test_starttls.rb
index 98835c952a..2c812aea67 100644
--- a/test/net/smtp/test_starttls.rb
+++ b/test/net/smtp/test_starttls.rb
@@ -118,4 +118,4 @@ module Net
assert_nothing_raised { smtp.enable_starttls_auto }
end
end
-end
+end unless /mswin|mingw/ =~ RUBY_PLATFORM