aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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