mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/rinda/test_rinda.rb: rename functions introduced in r41009.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41039 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
aa32168b5e
commit
260f6bed23
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Jun 3 01:08:43 2013 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
|
||||
|
||||
* test/rinda/test_rinda.rb: rename functions introduced in r41009.
|
||||
|
||||
Sun Jun 2 23:33:42 2013 Kazuki Tsujimoto <kazuki@callcc.net>
|
||||
|
||||
* enc/trans/japanese_euc.trans, test/ruby/test_transcode.rb,
|
||||
|
|
|
@ -657,8 +657,8 @@ class TestRingFinger < Test::Unit::TestCase
|
|||
def test_make_socket_ipv4_multicast
|
||||
v4mc = @rf.make_socket('239.0.0.1')
|
||||
|
||||
assert_equal(1, v4mc.getsockopt(:IPPROTO_IP, :IP_MULTICAST_LOOP).ip_multicast_loop)
|
||||
assert_equal(1, v4mc.getsockopt(:IPPROTO_IP, :IP_MULTICAST_TTL).ip_multicast_ttl)
|
||||
assert_equal(1, v4mc.getsockopt(:IPPROTO_IP, :IP_MULTICAST_LOOP).ipv4_multicast_loop)
|
||||
assert_equal(1, v4mc.getsockopt(:IPPROTO_IP, :IP_MULTICAST_TTL).ipv4_multicast_ttl)
|
||||
end
|
||||
|
||||
def test_make_socket_ipv6_multicast
|
||||
|
@ -672,7 +672,7 @@ class TestRingFinger < Test::Unit::TestCase
|
|||
def test_make_socket_ipv4_multicast_hops
|
||||
@rf.multicast_hops = 2
|
||||
v4mc = @rf.make_socket('239.0.0.1')
|
||||
assert_equal(2, v4mc.getsockopt(:IPPROTO_IP, :IP_MULTICAST_TTL).ip_multicast_ttl)
|
||||
assert_equal(2, v4mc.getsockopt(:IPPROTO_IP, :IP_MULTICAST_TTL).ipv4_multicast_ttl)
|
||||
end
|
||||
|
||||
def test_make_socket_ipv6_multicast_hops
|
||||
|
|
Loading…
Add table
Reference in a new issue