diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-12-14 00:28:26 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-12-14 00:28:26 +0000 |
commit | aa432d233491abc0d5e271f8e73345edb49348b7 (patch) | |
tree | d2158154190ea3f8a58ff24741fea6f28c0c25cd /test/-ext-/wait_for_single_fd | |
parent | 8cec0d5653110b5dd4c7484b13c561bc1cbb950d (diff) |
FreeBSD 9.0 RC3 is now released.
See also r33677, r33967, and r33973.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/-ext-/wait_for_single_fd')
-rw-r--r-- | test/-ext-/wait_for_single_fd/test_wait_for_single_fd.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/-ext-/wait_for_single_fd/test_wait_for_single_fd.rb b/test/-ext-/wait_for_single_fd/test_wait_for_single_fd.rb index 64c05c12e4..72914f04c5 100644 --- a/test/-ext-/wait_for_single_fd/test_wait_for_single_fd.rb +++ b/test/-ext-/wait_for_single_fd/test_wait_for_single_fd.rb @@ -23,7 +23,7 @@ class TestWaitForSingleFD < Test::Unit::TestCase def test_wait_for_invalid_fd # FreeBSD 8.2 or prior sticks this # http://redmine.ruby-lang.org/issues/5524 - skip if /freebsd[1-9]/ =~ RUBY_PLATFORM + skip if /freebsd[1-8]/ =~ RUBY_PLATFORM with_pipe do |r,w| wfd = w.fileno w.close |