aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-26 09:16:56 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-26 09:16:56 +0000
commit4af87bd672eca5a4ba6c11d931d4bf433be19312 (patch)
tree938aca68628f4a8817eca46eabcebb55ef7cd11f
parent5e631969575b7a1572dcec27ab91f04ecc64efc7 (diff)
downloadruby-4af87bd672eca5a4ba6c11d931d4bf433be19312.tar.gz
* 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
-rw-r--r--ChangeLog5
-rw-r--r--test/lib/profile_test_all.rb (renamed from test/profile_test_all.rb)0
-rw-r--r--test/runner.rb2
3 files changed, 6 insertions, 1 deletions
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 <shibata.hiroshi@gmail.com>
+
+ * 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 <shibata.hiroshi@gmail.com>
* lib/webrick/httpproxy.rb: remove useless assigned variables.
diff --git a/test/profile_test_all.rb b/test/lib/profile_test_all.rb
index 08de7bb129..08de7bb129 100644
--- a/test/profile_test_all.rb
+++ b/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