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

ruby-changes:55432

From: k0kubun <ko1@a...>
Date: Sat, 20 Apr 2019 15:54:44 +0900 (JST)
Subject: [ruby-changes:55432] k0kubun:r67641 (trunk): Skip test_find_collided_object on problematic CIs for now

k0kubun	2019-04-20 15:54:41 +0900 (Sat, 20 Apr 2019)

  New Revision: 67641

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

  Log:
    Skip test_find_collided_object on problematic CIs for now

  Modified files:
    trunk/test/ruby/test_gc_compact.rb
Index: test/ruby/test_gc_compact.rb
===================================================================
--- test/ruby/test_gc_compact.rb	(revision 67640)
+++ test/ruby/test_gc_compact.rb	(revision 67641)
@@ -79,6 +79,10 @@ class TestGCCompact < Test::Unit::TestCa https://github.com/ruby/ruby/blob/trunk/test/ruby/test_gc_compact.rb#L79
     loc = memory_location(new_tenant)
     assert loc, "should have a memory location"
 
+    if (ENV['TRAVIS'] && RUBY_PLATFORM =~ /darwin/) || ENV['WERCKER_STEP_ID']
+      skip "tests are failing on Travis osx / Wercker from here"
+    end
+
     address_idx = addresses.index(loc)
     assert address_idx, "should have an address index"
 

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

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