mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Tag a couple specs failing on AIX
* The rest seems OS bugs, MRI bugs or incomplete IPv6 implementation: https://rubyci.org/logs/rubyci.s3.amazonaws.com/aix71_ppc/ruby-trunk/log/20180828T103302Z.fail.html.gz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8a9996493a
commit
8867f285da
2 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ with_feature :ancillary_data do
|
|||
Socket::AncillaryData.new(:INET, :SOCKET, :RIGHTS, '').type.should == Socket::SCM_RIGHTS
|
||||
end
|
||||
|
||||
platform_is_not :"solaris2.10" do
|
||||
platform_is_not :"solaris2.10", :aix do
|
||||
it 'sets the type to SCM_TIMESTAMP when using :TIMESTAMP as the type argument' do
|
||||
Socket::AncillaryData.new(:INET, :SOCKET, :TIMESTAMP, '').type.should == Socket::SCM_TIMESTAMP
|
||||
end
|
||||
|
|
|
@ -50,7 +50,7 @@ with_feature :ancillary_data do
|
|||
lambda { data.unix_rights }.should raise_error(TypeError)
|
||||
end
|
||||
|
||||
platform_is_not :"solaris2.10" do
|
||||
platform_is_not :"solaris2.10", :aix do
|
||||
it 'raises TypeError when the type is not SCM_RIGHTS' do
|
||||
data = Socket::AncillaryData.new(:INET, :SOCKET, :TIMESTAMP, '')
|
||||
|
||||
|
|
Loading…
Reference in a new issue