diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-05-27 08:34:11 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-05-27 08:34:11 +0000 |
commit | ecd452a8b068998510a99fbdabe9884ab16c0d35 (patch) | |
tree | 4fd9d141bfda0416241130c65d2964566573ca2e | |
parent | 563ee0110091be16537ea77b866e543ba27c70b0 (diff) |
* test/runner.rb: fixed randomly test failure.
[Bug #6573][ruby-core:45563]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46160 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | test/runner.rb | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Tue May 27 17:10:14 2014 SHIBATA Hiroshi <[email protected]> + + * test/runner.rb: fixed randomly test failure. + [Bug #6573][ruby-core:45563] + Tue May 27 16:58:12 2014 SHIBATA Hiroshi <[email protected]> * test/test_timeout.rb (test_timeout): inverted test condition. diff --git a/test/runner.rb b/test/runner.rb index 9c17743436..2956b85df8 100644 --- a/test/runner.rb +++ b/test/runner.rb @@ -5,6 +5,7 @@ $LOAD_PATH << src_testdir $LOAD_PATH.unshift "#{src_testdir}/lib" require 'test/unit' +require_relative 'ruby/envutil' module Gem end |