summaryrefslogtreecommitdiff
path: root/sample
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-08 00:25:47 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-08 00:25:47 +0000
commit779922622b7016fd06d595f37378b26825a194c6 (patch)
tree6b7b336d76faa49d4dcd3b9a75f1055cea360488 /sample
parent1af101f8edd4d0990fe275c11ffd282132055a81 (diff)
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
Diffstat (limited to 'sample')
-rwxr-xr-x[-rw-r--r--]sample/test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/sample/test.rb b/sample/test.rb
index cfc02dd9b8..cefdef419e 100644..100755
--- a/sample/test.rb
+++ b/sample/test.rb
@@ -11,8 +11,8 @@ PROGRESS.instance_eval do
@bs = "\b" * @rotator[0].size
@tty = 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 = ""