зеркало из https://github.com/github/ruby.git
Disable minitest autorunner and run manually in order to get test/unit fork/signal tests to not trigger minitest multiple times
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19789 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
3fe5cb3494
Коммит
7370c38456
|
@ -6,4 +6,14 @@ rcsid = %w$Id$
|
|||
Version = rcsid[2].scan(/\d+/).collect!(&method(:Integer)).freeze
|
||||
Release = rcsid[3].freeze
|
||||
|
||||
exit Test::Unit::AutoRunner.run(true, File.dirname($0))
|
||||
# this allows minitest and test/unit to run side by side. test/unit
|
||||
# tests with fork/signal were triggering minitest multiple times.
|
||||
require 'minitest/unit'
|
||||
MiniTest::Unit.disable_autorun
|
||||
|
||||
args = ARGV.dup
|
||||
result = Test::Unit::AutoRunner.run(true, File.dirname($0))
|
||||
result &&= MiniTest::Unit.new.run(args)
|
||||
|
||||
exit result
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче