aboutsummaryrefslogtreecommitdiffstats
path: root/bootstraptest/runner.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-30 01:24:08 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-30 01:24:08 +0000
commit2f76e6d34c899d81f5c42e3b1e481c9e506a937a (patch)
tree2fe8d539c74a160df775c09bec01a74d25932701 /bootstraptest/runner.rb
parenta8f87d6d8d04d34ead8915ae350999c7875180ea (diff)
downloadruby-2f76e6d34c899d81f5c42e3b1e481c9e506a937a.tar.gz
color option
* bootstraptest/runner.rb, sample/test.rb: add --color option. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest/runner.rb')
-rwxr-xr-xbootstraptest/runner.rb13
1 files changed, 12 insertions, 1 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index 7455e8390c..62e63eb3f4 100755
--- a/bootstraptest/runner.rb
+++ b/bootstraptest/runner.rb
@@ -61,6 +61,7 @@ def main
@ruby = File.expand_path('miniruby')
@verbose = false
$stress = false
+ @color = nil
dir = nil
quiet = false
tests = nil
@@ -81,6 +82,9 @@ def main
true
when /\A(--stress|-s)/
$stress = true
+ when /\A--color(?:=(?:always|(auto)|(never)))?\z/
+ @color = (!$2 unless $1)
+ true
when /\A(-q|--q(uiet))\z/
quiet = true
true
@@ -113,7 +117,14 @@ End
@progress = %w[- \\ | /]
@progress_bs = "\b" * @progress[0].size
@tty = !@verbose && $stderr.tty?
- if @tty and /mswin|mingw/ !~ RUBY_PLATFORM and /dumb/ !~ ENV["TERM"]
+ case @color
+ when nil
+ @color = @tty && /dumb/ !~ ENV["TERM"]
+ @color &= /mswin|mingw/ !~ RUBY_PLATFORM
+ when true
+ @tty = true
+ end
+ if @color
@passed = "\e[#{ENV['PASSED_COLOR']||'32'}m"
@failed = "\e[#{ENV['FAILED_COLOR']||'31'}m"
@reset = "\e[m"