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

ruby-changes:56285

From: Nobuyoshi <ko1@a...>
Date: Sun, 30 Jun 2019 18:38:51 +0900 (JST)
Subject: [ruby-changes:56285] Nobuyoshi Nakada: c400c0b4a0 (trunk): Skip instead of return

https://git.ruby-lang.org/ruby.git/commit/?id=c400c0b4a0

From c400c0b4a00706a0da33664c1898e15f1aba0eec Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Sun, 30 Jun 2019 09:46:58 +0900
Subject: Skip instead of return


diff --git a/test/ruby/test_gc_compact.rb b/test/ruby/test_gc_compact.rb
index 4228cee..ca4a285 100644
--- a/test/ruby/test_gc_compact.rb
+++ b/test/ruby/test_gc_compact.rb
@@ -111,7 +111,8 @@ class TestGCCompact < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_gc_compact.rb#L111
 
     GC.verify_compaction_references(toward: :empty)
 
-    return
+    skip "time consuming"
+
     new_tenants = 10.times.map {
       find_object_in_recycled_slot(addresses)
     }
-- 
cgit v0.10.2


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

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