mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/ruby/test_refinement.rb: skip
test_prepend_after_refine_wb_miss on ARM or MIPS. [ruby-core:76031] [Bug #12491] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
86a756ae15
commit
a1d17c5907
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Wed Jun 29 12:41:58 2016 Shugo Maeda <shugo@ruby-lang.org>
|
||||
|
||||
* test/ruby/test_refinement.rb: skip
|
||||
test_prepend_after_refine_wb_miss on ARM or MIPS.
|
||||
[ruby-core:76031] [Bug #12491]
|
||||
|
||||
Wed Jun 29 08:45:53 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* proc.c (passed_block): convert passed block symbol to proc.
|
||||
|
|
|
@ -785,6 +785,9 @@ class TestRefinement < Test::Unit::TestCase
|
|||
eval PrependAfterRefine_CODE
|
||||
|
||||
def test_prepend_after_refine_wb_miss
|
||||
if /\A(arm|mips)/ =~ RUBY_PLATFORM
|
||||
skip "too slow cpu"
|
||||
end
|
||||
assert_normal_exit %Q{
|
||||
GC.stress = true
|
||||
10.times{
|
||||
|
|
Loading…
Reference in a new issue