1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* bootstraptest/runner.rb (show_progress): refine verbose mode.

(exec_test): ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32088 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2011-06-14 14:17:42 +00:00
parent 92c0438049
commit 7d6fe4e604
2 changed files with 12 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Jun 14 23:16:22 2011 Tanaka Akira <akr@fsij.org>
* bootstraptest/runner.rb (show_progress): refine verbose mode.
(exec_test): ditto.
Tue Jun 14 23:02:36 2011 Tanaka Akira <akr@fsij.org>
* bootstraptest/runner.rb (show_progress): extracted from assert_check.

View file

@ -136,6 +136,7 @@ def exec_test(pathes)
@location = nil
pathes.each do |path|
$stderr.print "\n#{File.basename(path)} "
$stderr.puts if @verbose
load File.expand_path(path)
end
$stderr.puts
@ -156,16 +157,21 @@ def exec_test(pathes)
end
def show_progress(message = '')
$stderr.puts "\##{@count} #{@location}" if @verbose
if @verbose
$stderr.print "\##{@count} #{@location} "
end
faildesc = yield
if !faildesc
$stderr.print '.'
$stderr.puts if @verbose
else
$stderr.print 'F'
$stderr.puts if @verbose
error faildesc, message
end
rescue Exception => err
$stderr.print 'E'
$stderr.puts if @verbose
error err.message, message
end