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

ruby-changes:28844

From: nobu <ko1@a...>
Date: Thu, 23 May 2013 12:01:02 +0900 (JST)
Subject: [ruby-changes:28844] nobu:r40896 (trunk): * test/ruby/test_io.rb (TestIO#test_write_32bit_boundary): HFS+ seems

nobu	2013-05-23 12:00:52 +0900 (Thu, 23 May 2013)

  New Revision: 40896

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

  Log:
    * test/ruby/test_io.rb (TestIO#test_write_32bit_boundary): HFS+ seems
      not supporting a sparce file.

  Modified files:
    trunk/test/ruby/test_io.rb

Index: test/ruby/test_io.rb
===================================================================
--- test/ruby/test_io.rb	(revision 40895)
+++ test/ruby/test_io.rb	(revision 40896)
@@ -2684,7 +2684,7 @@ End https://github.com/ruby/ruby/blob/trunk/test/ruby/test_io.rb#L2684
         assert_nil(f.read(1), msg)
       end;
     }
-  end
+  end if /mswin|mingw/ =~ RUBY_PLATFORM
 
   def test_write_32bit_boundary
     bug8431 = '[ruby-core:55098] [Bug #8431]'
@@ -2703,5 +2703,5 @@ End https://github.com/ruby/ruby/blob/trunk/test/ruby/test_io.rb#L2703
         end
       end;
     }
-  end
+  end if /mswin|mingw/ =~ RUBY_PLATFORM
 end

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

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