summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-25 20:57:32 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-25 20:57:32 +0900
commit7e33f324e1d1de31a69d16dc9f27ec223523c6e8 (patch)
tree67d5bded523ce77baa44ae1d22fc737ed802c5b0
parenta50c844645c337742584560abc2e2b63bf566e79 (diff)
Get rid of failures about coverage
Run test suites explicitly instead of auto-running, to get rid of failures when simplecov is not installed but COVERAGE is set.
-rw-r--r--tool/test/runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/test/runner.rb b/tool/test/runner.rb
index 15b2cdd9fa..1ee4fdf8c6 100644
--- a/tool/test/runner.rb
+++ b/tool/test/runner.rb
@@ -19,4 +19,4 @@ when "-e"
else
dir = File.expand_path("..", $0)
end
-Test::Unit::AutoRunner.new(true, dir)
+exit Test::Unit::AutoRunner.run(true, dir)