summaryrefslogtreecommitdiff
path: root/bootstraptest
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-02 09:19:38 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-02 09:19:38 +0900
commitf47254d2162a95174ab7d1659bf6ec5a933bd0ca (patch)
tree10ce17bace6d82d814d7d57d88db9a7b9aaae685 /bootstraptest
parent897b1e05623996ea1003c812e7705a2d197464b3 (diff)
colors file has been moved from test to tool
Diffstat (limited to 'bootstraptest')
-rwxr-xr-xbootstraptest/runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index 3a3c8c0938..4e9196ef3d 100755
--- a/bootstraptest/runner.rb
+++ b/bootstraptest/runner.rb
@@ -140,7 +140,7 @@ End
# dircolors-like style
colors = (colors = ENV['TEST_COLORS']) ? Hash[colors.scan(/(\w+)=([^:\n]*)/)] : {}
begin
- File.read(File.join(__dir__, "../test/colors")).scan(/(\w+)=([^:\n]*)/) do |n, c|
+ File.read(File.join(__dir__, "../tool/colors")).scan(/(\w+)=([^:\n]*)/) do |n, c|
colors[n] ||= c
end
rescue