From 779922622b7016fd06d595f37378b26825a194c6 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 8 May 2012 00:25:47 +0000 Subject: tests: customizable colors * bootstraptest/runner.rb, lib/test/unit.rb, sample/test.rb: customizable colors. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bootstraptest/runner.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bootstraptest/runner.rb') diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb index 9341a33..7455e83 100755 --- a/bootstraptest/runner.rb +++ b/bootstraptest/runner.rb @@ -114,8 +114,8 @@ End @progress_bs = "\b" * @progress[0].size @tty = !@verbose && $stderr.tty? if @tty and /mswin|mingw/ !~ RUBY_PLATFORM and /dumb/ !~ ENV["TERM"] - @passed = "\e[32m" - @failed = "\e[31m" + @passed = "\e[#{ENV['PASSED_COLOR']||'32'}m" + @failed = "\e[#{ENV['FAILED_COLOR']||'31'}m" @reset = "\e[m" else @passed = @failed = @reset = "" -- cgit v1.1