diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-06-26 09:16:56 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-06-26 09:16:56 +0000 |
commit | 4af87bd672eca5a4ba6c11d931d4bf433be19312 (patch) | |
tree | 938aca68628f4a8817eca46eabcebb55ef7cd11f | |
parent | 5e631969575b7a1572dcec27ab91f04ecc64efc7 (diff) |
* 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-- | ChangeLog | 5 | ||||
-rw-r--r-- | test/lib/profile_test_all.rb (renamed from test/profile_test_all.rb) | 0 | ||||
-rw-r--r-- | test/runner.rb | 2 |
3 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Thu Jun 26 18:06:50 2014 SHIBATA Hiroshi <[email protected]> + + * 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 <[email protected]> * 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 |