From 4c5e88e1827187b5aae7607ab2073ef68a37fbcb Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 15 Oct 2008 04:16:28 +0000 Subject: Disable minitest autorunner and run manually in order to get test/unit fork/signal tests to not trigger minitest multiple times git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19789 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/runner.rb | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/test/runner.rb b/test/runner.rb index f9ed25a93..aa78c4ead 100644 --- a/test/runner.rb +++ b/test/runner.rb @@ -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 + -- cgit