ruby-changes:56328
From: Nobuyoshi <ko1@a...>
Date: Tue, 2 Jul 2019 09:20:52 +0900 (JST)
Subject: [ruby-changes:56328] Nobuyoshi Nakada: f47254d216 (master): colors file has been moved from test to tool
https://git.ruby-lang.org/ruby.git/commit/?id=f47254d216 From f47254d2162a95174ab7d1659bf6ec5a933bd0ca Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Tue, 2 Jul 2019 09:19:38 +0900 Subject: colors file has been moved from test to tool diff --git a/basictest/test.rb b/basictest/test.rb index 5760a13..10ea28d 100755 --- a/basictest/test.rb +++ b/basictest/test.rb @@ -35,7 +35,7 @@ class Progress https://github.com/ruby/ruby/blob/trunk/basictest/test.rb#L35 # 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 diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb index 3a3c8c0..4e9196e 100755 --- a/bootstraptest/runner.rb +++ b/bootstraptest/runner.rb @@ -140,7 +140,7 @@ End https://github.com/ruby/ruby/blob/trunk/bootstraptest/runner.rb#L140 # 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 -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/