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

ruby-changes:67880

From: Hiroshi <ko1@a...>
Date: Sat, 11 Sep 2021 08:48:27 +0900 (JST)
Subject: [ruby-changes:67880] 1fd2a66a93 (master): Merge run methods

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

From 1fd2a66a93a4065b6be725066044107045c81d01 Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Wed, 8 Sep 2021 12:04:10 +0900
Subject: Merge run methods

---
 tool/lib/test/unit.rb | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/tool/lib/test/unit.rb b/tool/lib/test/unit.rb
index 8d303f4..4a89cca 100644
--- a/tool/lib/test/unit.rb
+++ b/tool/lib/test/unit.rb
@@ -1511,13 +1511,6 @@ module Test https://github.com/ruby/ruby/blob/trunk/tool/lib/test/unit.rb#L1511
       end
 
       ##
-      # Begins the full test run. Delegates to +runner+'s #_run method.
-
-      def run args = []
-        self.class.runner._run(args)
-      end
-
-      ##
       # Top level driver, controls all output and filtering.
 
       def _run args = []
@@ -1564,8 +1557,11 @@ module Test https://github.com/ruby/ruby/blob/trunk/tool/lib/test/unit.rb#L1557
       include Test::Unit::TimeoutOption
       include Test::Unit::RunCount
 
-      def run(argv)
-        super
+      ##
+      # Begins the full test run. Delegates to +runner+'s #_run method.
+
+      def run(argv = [])
+        self.class.runner._run(argv)
       rescue NoMemoryError
         system("cat /proc/meminfo") if File.exist?("/proc/meminfo")
         system("ps x -opid,args,%cpu,%mem,nlwp,rss,vsz,wchan,stat,start,time,etime,blocked,caught,ignored,pending,f") if File.exist?("/bin/ps")
-- 
cgit v1.1


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

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