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

ruby-changes:67870

From: Hiroshi <ko1@a...>
Date: Sat, 11 Sep 2021 08:48:19 +0900 (JST)
Subject: [ruby-changes:67870] 93c44c4ed2 (master): Move constants under the TestCase

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

From 93c44c4ed2f3b35db862f4238e5fb104cfb7aab9 Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Tue, 7 Sep 2021 09:31:44 +0900
Subject: Move constants under the TestCase

---
 tool/lib/test/unit/assertions.rb | 5 -----
 tool/lib/test/unit/testcase.rb   | 5 +++++
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/tool/lib/test/unit/assertions.rb b/tool/lib/test/unit/assertions.rb
index 2017300..374f137 100644
--- a/tool/lib/test/unit/assertions.rb
+++ b/tool/lib/test/unit/assertions.rb
@@ -844,11 +844,6 @@ EOT https://github.com/ruby/ruby/blob/trunk/tool/lib/test/unit/assertions.rb#L844
         result
       end
 
-      # kernel resolution can limit the minimum time we can measure
-      # [ruby-core:81540]
-      MIN_HZ = MiniTest::Unit::TestCase.windows? ? 67 : 100
-      MIN_MEASURABLE = 1.0 / MIN_HZ
-
       def assert_cpu_usage_low(msg = nil, pct: 0.05, wait: 1.0, stop: nil)
         require 'benchmark'
 
diff --git a/tool/lib/test/unit/testcase.rb b/tool/lib/test/unit/testcase.rb
index 008c880..d342e38 100644
--- a/tool/lib/test/unit/testcase.rb
+++ b/tool/lib/test/unit/testcase.rb
@@ -154,6 +154,11 @@ module Test https://github.com/ruby/ruby/blob/trunk/tool/lib/test/unit/testcase.rb#L154
       PASSTHROUGH_EXCEPTIONS = [NoMemoryError, SignalException,
                                 Interrupt, SystemExit] # :nodoc:
 
+      # kernel resolution can limit the minimum time we can measure
+      # [ruby-core:81540]
+      MIN_HZ = windows? ? 67 : 100
+      MIN_MEASURABLE = 1.0 / MIN_HZ
+
       ##
       # Runs the tests reporting the status to +runner+
 
-- 
cgit v1.1


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

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