summaryrefslogtreecommitdiff
path: root/bootstraptest/runner.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-06 09:23:53 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-06 09:23:53 +0000
commit616f4d33856a539e89aadfbf75ebb17acc7781da (patch)
tree8f07c8ae87b82e94b9aa721dc7ea33b34cab8ba3 /bootstraptest/runner.rb
parent9aa9c07c077d918a2a70c7e60402d1e475c6686a (diff)
* bootstraptest/runner.rb: fix load path.
* common.mk: fix "test" rule to run with "btest". * rubytest.rb, sample/test.rb: fix to show tests progress. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest/runner.rb')
-rw-r--r--bootstraptest/runner.rb13
1 files changed, 9 insertions, 4 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index 556a1d9e12..53e2a1ec60 100644
--- a/bootstraptest/runner.rb
+++ b/bootstraptest/runner.rb
@@ -5,12 +5,18 @@
# Never use test/unit in this file.
# Never use Ruby extensions in this file.
-require 'fileutils'
+begin
+ require 'fileutils'
+ require 'tmpdir'
+rescue LoadError
+ $:.unshift File.join(File.dirname(__FILE__), '../lib')
+ retry
+end
def main
@ruby = File.expand_path('miniruby')
@verbose = false
- dir = '/tmp/bootstraptest.tmpwd'
+ dir = File.join(Dir.tmpdir, 'bootstraptest.tmpwd')
quiet = false
tests = nil
ARGV.delete_if {|arg|
@@ -73,8 +79,7 @@ def exec_test(pathes)
@errbuf = []
@location = nil
pathes.each do |path|
- puts
- puts File.basename(path)
+ $stderr.print "\n#{File.basename(path)} "
load File.expand_path(path)
end
$stderr.puts