[前][次][番号順一覧][スレッド一覧]

ruby-changes:17973

From: usa <ko1@a...>
Date: Wed, 1 Dec 2010 15:10:42 +0900 (JST)
Subject: [ruby-changes:17973] Ruby:r29993 (trunk): * test/openssl/test_ssl.rb (test_not_started_session): non socket

usa	2010-12-01 15:09:22 +0900 (Wed, 01 Dec 2010)

  New Revision: 29993

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29993

  Log:
    * test/openssl/test_ssl.rb (test_not_started_session): non socket
      argument of SSLSocket.new is not supported on Windows.

  Modified files:
    trunk/ChangeLog
    trunk/test/openssl/test_ssl.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 29992)
+++ ChangeLog	(revision 29993)
@@ -1,3 +1,8 @@
+Wed Dec  1 15:08:32 2010  NAKAMURA Usaku  <usa@r...>
+
+	* test/openssl/test_ssl.rb (test_not_started_session): non socket
+	  argument of SSLSocket.new is not supported on Windows.
+
 Wed Dec  1 14:36:36 2010  Nobuyoshi Nakada  <nobu@r...>
 
 	* string.c (rb_memhash): zero-filled strings should return
Index: test/openssl/test_ssl.rb
===================================================================
--- test/openssl/test_ssl.rb	(revision 29992)
+++ test/openssl/test_ssl.rb	(revision 29993)
@@ -161,6 +161,7 @@
   end
 
   def test_not_started_session
+    skip "non socket argument of SSLSocket.new is not supported on this platform" if /mswin|mingw/ =~ RUBY_PLATFORM
     open(__FILE__) do |f|
       assert_nil OpenSSL::SSL::SSLSocket.new(f).cert
     end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]