summaryrefslogtreecommitdiff
path: root/test/ruby/test_io.rb
diff options
context:
space:
mode:
authorduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-20 09:39:31 +0000
committerduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-20 09:39:31 +0000
commitfda9ce3edd084c5011fb612a866d015c02fe8513 (patch)
treee62f20c9af03afa26e446ab9744557924e19631f /test/ruby/test_io.rb
parent3792ad0ecaa7e8dc0f6ac83cb97962eadd23647c (diff)
* test/ruby/test_in.rb: Skip test_open_fifo_does_not_block_other_threads
on cygwin. Fifos seem to work okay in cygwin, but this test repeatedly hangs. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55468 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_io.rb')
-rw-r--r--test/ruby/test_io.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 3f6825d2ec..bfcfbbd06c 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -3253,7 +3253,7 @@ End
assert_equal("foo", t1_value)
EOS
}
- end if /mswin|mingw|bccwin/ !~ RUBY_PLATFORM
+ end if /mswin|mingw|bccwin|cygwin/ !~ RUBY_PLATFORM
def test_open_flag
make_tempfile do |t|