diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-06-15 01:38:32 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-06-15 01:38:32 +0000 |
commit | 19b4b7de3b82466eb99b4027430cdf88718610a0 (patch) | |
tree | c20f10e75b305e9141414619919738d1c19e8011 /sample | |
parent | fa6a2e03248840f4cb2308457abfd58e1244327b (diff) | |
download | ruby-19b4b7de3b82466eb99b4027430cdf88718610a0.tar.gz |
test: TEST_COLORS
* bootstraptest/runner.rb (main): fixed typo.
* lib/test/unit.rb (Test::Unit::Runner#_prepare_run): ditto.
* sample/test.rb: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36097 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample')
-rwxr-xr-x | sample/test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/test.rb b/sample/test.rb index ee8bc4a6bc..dcb4cdf24b 100755 --- a/sample/test.rb +++ b/sample/test.rb @@ -24,7 +24,7 @@ PROGRESS.instance_eval do end if @color # dircolors-like style - colors = (colors = ENV['TEST_COLORS']) ? Hash[colors.scan(/(\w)=([^:]*)/)] : {} + colors = (colors = ENV['TEST_COLORS']) ? Hash[colors.scan(/(\w+)=([^:]*)/)] : {} @passed = "\e[#{colors["pass"] || "32"}m" @failed = "\e[#{colors["fail"] || "31"}m" @reset = "\e[m" |