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

ruby-changes:60275

From: Yusuke <ko1@a...>
Date: Tue, 3 Mar 2020 21:00:52 +0900 (JST)
Subject: [ruby-changes:60275] 43ed4eb6d1 (master): Limit the debug code conditon so that it runs only under i386-solaris

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

From 43ed4eb6d1cbbd31de2c98ae515630ee8f988c1e Mon Sep 17 00:00:00 2001
From: Yusuke Endoh <mame@r...>
Date: Tue, 3 Mar 2020 21:00:03 +0900
Subject: Limit the debug code conditon so that it runs only under i386-solaris


diff --git a/tool/lib/leakchecker.rb b/tool/lib/leakchecker.rb
index 2fa504b..bcc0e42 100644
--- a/tool/lib/leakchecker.rb
+++ b/tool/lib/leakchecker.rb
@@ -11,7 +11,7 @@ class LeakChecker https://github.com/ruby/ruby/blob/trunk/tool/lib/leakchecker.rb#L11
   end
 
   def check(test_name)
-    GC.verify_internal_consistency if /solaris/ =~ RUBY_PLATFORM
+    GC.verify_internal_consistency if /i386-solaris/ =~ RUBY_PLATFORM
     leaks = [
       check_fd_leak(test_name),
       check_thread_leak(test_name),
-- 
cgit v0.10.2


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

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