summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-23 03:00:52 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-23 03:00:52 +0000
commitec04fecda53da871016240ae2b9ba08a6c66e2d5 (patch)
tree469d83ba9bedc897584bc8dd907cc24a8948e295 /test
parent8a867f91334fd1e9aa8fcd881a5eef56bb5bac21 (diff)
* test/ruby/test_io.rb (TestIO#test_write_32bit_boundary): HFS+ seems
not supporting a sparce file. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40896 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 30c482f4e6..395a9b9867 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -2684,7 +2684,7 @@ End
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
end
end;
}
- end
+ end if /mswin|mingw/ =~ RUBY_PLATFORM
end