From 4af87bd672eca5a4ba6c11d931d4bf433be19312 Mon Sep 17 00:00:00 2001 From: hsbt Date: Thu, 26 Jun 2014 09:16:56 +0000 Subject: [PATCH] * test/profile_test_all.rb: move into test library directory. * test/runner.rb: fix require path for profile_test_all.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46562 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ test/{ => lib}/profile_test_all.rb | 0 test/runner.rb | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) rename test/{ => lib}/profile_test_all.rb (100%) diff --git a/ChangeLog b/ChangeLog index fb39aa838b..6807d73e4f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Jun 26 18:06:50 2014 SHIBATA Hiroshi + + * test/profile_test_all.rb: move into test library directory. + * test/runner.rb: fix require path for profile_test_all.rb. + Thu Jun 26 17:57:57 2014 SHIBATA Hiroshi * lib/webrick/httpproxy.rb: remove useless assigned variables. diff --git a/test/profile_test_all.rb b/test/lib/profile_test_all.rb similarity index 100% rename from test/profile_test_all.rb rename to test/lib/profile_test_all.rb diff --git a/test/runner.rb b/test/runner.rb index aa249a53d5..61fb0960f8 100644 --- a/test/runner.rb +++ b/test/runner.rb @@ -15,7 +15,7 @@ end ENV["GEM_SKIP"] = ENV["GEM_HOME"] = ENV["GEM_PATH"] = "".freeze -require_relative 'profile_test_all' if ENV.has_key?('RUBY_TEST_ALL_PROFILE') +require_relative 'lib/profile_test_all' if ENV.has_key?('RUBY_TEST_ALL_PROFILE') require_relative 'lib/tracepointchecker' module Test::Unit