Skip to content

Commit 94fbadd

Browse files
committed
* test/socket/test_unix.rb: 1.9.3 doesn't have IO::EAGAINWaitReadable.
use IO::WaitReadable instead. this fixes the test failure introduced at r45093. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@45095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent c3ab0bb commit 94fbadd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/socket/test_unix.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def test_dgram_pair_sendrecvmsg_errno_set
358358
pipe[0].read_nonblock(1)
359359
fail
360360
rescue => e
361-
assert(IO::EAGAINWaitReadable === e)
361+
assert(IO::WaitReadable === e)
362362
end
363363
end
364364
Timeout.timeout(10) do

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define RUBY_VERSION "1.9.3"
2-
#define RUBY_PATCHLEVEL 540
2+
#define RUBY_PATCHLEVEL 541
33

44
#define RUBY_RELEASE_DATE "2014-02-22"
55
#define RUBY_RELEASE_YEAR 2014

0 commit comments

Comments
 (0)