summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
Diffstat (limited to 'tool')
-rw-r--r--tool/colorize.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/tool/colorize.rb b/tool/colorize.rb
index 1cbbeef543..73dd9e52fd 100644
--- a/tool/colorize.rb
+++ b/tool/colorize.rb
@@ -7,6 +7,12 @@ class Colorize
if (/\A\e\[.*m\z/ =~ IO.popen("tput smso", "r", err: IO::NULL, &:read) rescue nil)
@beg = "\e["
@colors = (colors = ENV['TEST_COLORS']) ? Hash[colors.scan(/(\w+)=([^:\n]*)/)] : {}
+ begin
+ File.read(File.join(__dir__, "../test/colors")).scan(/(\w+)=([^:\n]*)/) do |n, c|
+ colors[n] ||= c
+ end
+ rescue
+ end
@reset = "#{@beg}m"
end
end