ruby-changes:21183
From: sorah <ko1@a...>
Date: Fri, 9 Sep 2011 11:08:55 +0900 (JST)
Subject: [ruby-changes:21183] sorah:r33232 (trunk): * test/rubygems/test_gem_commands_help_command.rb: Add one
sorah 2011-09-09 11:08:44 +0900 (Fri, 09 Sep 2011) New Revision: 33232 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=33232 Log: * test/rubygems/test_gem_commands_help_command.rb: Add one `require` because if run test-all with test/unit parallel running, sometimes this test fails by some constants not found. The error reason is some worker doesn't require the file needed by this test. This issue is related to [ruby-core:36168]. Modified files: trunk/ChangeLog trunk/test/rubygems/test_gem_commands_help_command.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 33231) +++ ChangeLog (revision 33232) @@ -1,3 +1,11 @@ +Fri Sep 9 11:00:55 2011 Shota Fukumori <sorah@t...> + + * test/rubygems/test_gem_commands_help_command.rb: Add one + `require` because if run test-all with test/unit parallel + running, sometimes this test fails by some constants not found. + The error reason is some worker doesn't require the file needed by + this test. This issue is related to [ruby-core:36168]. + Fri Sep 9 10:22:03 2011 Nobuyoshi Nakada <nobu@r...> * thread.c (rb_thread_select): fix a typo to initialize efds Index: test/rubygems/test_gem_commands_help_command.rb =================================================================== --- test/rubygems/test_gem_commands_help_command.rb (revision 33231) +++ test/rubygems/test_gem_commands_help_command.rb (revision 33232) @@ -3,6 +3,7 @@ require "rubygems/commands/help_command" require "rubygems/format" require "rubygems/command_manager" +require_relative "rubygems_plugin" class TestGemCommandsHelpCommand < Gem::TestCase def setup -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/