summaryrefslogtreecommitdiff
path: root/test/runner.rb
diff options
context:
space:
mode:
authorntalbott <ntalbott@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-17 02:56:47 +0000
committerntalbott <ntalbott@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-17 02:56:47 +0000
commitf8989a0cdd9a8ff9d0087403e181689952879ca6 (patch)
treebecf656aa3e0cb8b0f8ff2b2efdbfea48b814156 /test/runner.rb
parentef46698d765a52c64c38a28d5229fd89e92b2e8d (diff)
* lib/test/unit/collector.rb (collect_file): now deletes paths added
to $LOAD_PATH instead of restoring it verbatim. * lib/test/unit/autorunner.rb (AutoRunner.run): fixed so that 'ruby -rtest/unit -rtest1 -rtest2 -e0' will use the objectspace collector again. Also tried to simplify the calling convention. * test/runner.rb: adjusted for new AutoRunner semantics. * lib/test/unit.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7989 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/runner.rb')
-rw-r--r--test/runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runner.rb b/test/runner.rb
index 4ecc35aecc..d274bc8929 100644
--- a/test/runner.rb
+++ b/test/runner.rb
@@ -4,4 +4,4 @@ rcsid = %w$Id$
Version = rcsid[2].scan(/\d+/).collect!(&method(:Integer)).freeze
Release = rcsid[3].freeze
-exit Test::Unit::AutoRunner.run(false, File.dirname($0))
+exit Test::Unit::AutoRunner.run(true, File.dirname($0))