summaryrefslogtreecommitdiff
path: root/tool/lib
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-01-05 08:16:24 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-01-05 08:16:24 +0900
commitb496578758faa67490cf196b70e7cfbfd2ff7f3d (patch)
tree7b52678271f3ea121e18182f76842d2b4b8e784f /tool/lib
parent1f2fef1f9ac03fb01a3150f953e2194e58e437ea (diff)
downloadruby-b496578758faa67490cf196b70e7cfbfd2ff7f3d.tar.gz
Skip Test::Unit::AutoRunner logic in ruby/ruby repository
Diffstat (limited to 'tool/lib')
-rw-r--r--tool/lib/core_assertions.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/tool/lib/core_assertions.rb b/tool/lib/core_assertions.rb
index 6c09c7cab6..fdae050bb5 100644
--- a/tool/lib/core_assertions.rb
+++ b/tool/lib/core_assertions.rb
@@ -248,8 +248,11 @@ module Test
at_exit {
out.puts "#{token}<error>", [Marshal.dump($!)].pack('m'), "#{token}</error>", "#{token}assertions=#{self._assertions}"
}
- Test::Unit::Runner.class_variable_set(:@@stop_auto_run, true) if defined?(Test::Unit::Runner)
- Test::Unit::AutoRunner.need_auto_run = false if defined?(Test::Unit::AutoRunner)
+ if defined?(Test::Unit::Runner)
+ Test::Unit::Runner.class_variable_set(:@@stop_auto_run, true)
+ elsif defined?(Test::Unit::AutoRunner)
+ Test::Unit::AutoRunner.need_auto_run = false
+ end
end
def assert_separately(args, file = nil, line = nil, src, ignore_stderr: nil, **opt)