Skip to content

Commit

Permalink
Add tags
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Sep 27, 2016
1 parent 1c99ba4 commit 8048c3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion spec/ruby/library/socket/socket/getaddrinfo_spec.rb
Expand Up @@ -106,7 +106,7 @@
["AF_INET6", 9, "::1", "::1", Socket::AF_INET6, Socket::SOCK_STREAM, Socket::IPPROTO_TCP],
["AF_INET6", 9, "0:0:0:0:0:0:0:1", "0:0:0:0:0:0:0:1", Socket::AF_INET6, Socket::SOCK_STREAM, Socket::IPPROTO_TCP]
]
res.each { |a| expected.should include (a) }
res.each { |a| expected.should include(a) }
end
end
end
Expand Down
2 changes: 2 additions & 0 deletions spec/tags/ruby/language/constants_tags.txt
Expand Up @@ -5,3 +5,5 @@ fails:Module#private_constant marked constants in a class cannot be reopened as
fails(2.3 feature):Constant resolution within a singleton class (class << obj) uses its own namespace for each object
fails(2.3 feature):Constant resolution within a singleton class (class << obj) uses its own namespace for nested modules
fails(2.3 feature):Constant resolution within a singleton class (class << obj) allows nested modules to have proper resolution
fails:Module#private_constant marked constants in a module cannot be reopened as a module from scope where constant would be private
fails:Module#private_constant marked constants in a module cannot be reopened as a class from scope where constant would be private
1 change: 1 addition & 0 deletions spec/tags/ruby/library/socket/socket/getaddrinfo_tags.txt
@@ -1,2 +1,3 @@
windows:Socket#getaddrinfo accepts empty addresses for IPv6 passive sockets
windows:Socket#getaddrinfo accepts empty addresses for IPv6 non-passive sockets
fails:Socket#getaddrinfo accepts empty addresses for IPv6 non-passive sockets

0 comments on commit 8048c3e

Please sign in to comment.