1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Solaris 10 x86 raseis SEGV

http://rubyci.s3.amazonaws.com/unstable10x/ruby-trunk/log/20170527T221806Z.diff.html.gz

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2017-05-30 06:50:35 +00:00
parent 11954049fa
commit 58d8d65281

View file

@ -193,8 +193,10 @@ describe "C-API Kernel function" do
@s.rb_yield(1) { break 73 }.should == 73
end
it "rb_yield through a callback to a block that breaks with a value returns the value" do
@s.rb_yield_indirected(1) { break 73 }.should == 73
platform_is_not :"solaris2.10" do # NOTE: i386-pc-solaris2.10
it "rb_yield through a callback to a block that breaks with a value returns the value" do
@s.rb_yield_indirected(1) { break 73 }.should == 73
end
end
end