[前][次][番号順一覧][スレッド一覧]

ruby-changes:55329

From: k0kubun <ko1@a...>
Date: Sun, 14 Apr 2019 14:48:44 +0900 (JST)
Subject: [ruby-changes:55329] k0kubun:r67536 (trunk): Revert "Skip recompiling tests on i686 Linux"

k0kubun	2019-04-14 14:48:39 +0900 (Sun, 14 Apr 2019)

  New Revision: 67536

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67536

  Log:
    Revert "Skip recompiling tests on i686 Linux"
    
    This reverts commit 19513c88d5f923abb7f226520192aef9f3fcc1c7.

  Modified files:
    trunk/test/ruby/test_jit.rb
Index: test/ruby/test_jit.rb
===================================================================
--- test/ruby/test_jit.rb	(revision 67535)
+++ test/ruby/test_jit.rb	(revision 67536)
@@ -529,9 +529,6 @@ class TestJIT < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_jit.rb#L529
       print block.call(obj)
     end;
 
-    if RUBY_PLATFORM =~ /i686/
-      skip 'recompilation is not happening on i686'
-    end
     # send call -> optimized call (send JIT) -> optimized call
     assert_eval_with_jit("#{<<~"begin;"}\n#{<<~"end;"}", stdout: '122', success_count: 2, min_calls: 2)
     begin;
@@ -708,9 +705,6 @@ class TestJIT < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_jit.rb#L705
   end
 
   def test_inlined_undefined_ivar
-    if RUBY_PLATFORM =~ /i686/
-      skip 'recompilation is not happening on i686'
-    end
     assert_eval_with_jit("#{<<~"begin;"}\n#{<<~"end;"}", stdout: "bbb", success_count: 3, min_calls: 3)
     begin;
       class Foo

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]