summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-05 22:38:05 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-05 22:38:05 +0000
commit9c36cb3917372a63406267018b37b9940254ac72 (patch)
tree9614ff90683bbfb1fcd98d9c3dd8d3ff6e86a48e
parent3c1a077f65ea4759c2efd51ff2290e56df4af72f (diff)
* test/drb/ut_array.rb: uses 'druby://localhost:0' instead of nil
as well as test/drb/ut_drb.rb. This fixes the same problem as [ruby-dev:23078]. * test/drb/ut_array_drbssl.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@31929 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog8
-rw-r--r--test/drb/ut_array.rb2
-rw-r--r--test/drb/ut_array_drbssl.rb2
-rw-r--r--version.h2
4 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 09cc92f934..f488a9b144 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Mon Jun 6 07:08:54 2011 Yuki Sonoda (Yugui) <yugui@yugui.jp>
+
+ * test/drb/ut_array.rb: uses 'druby://localhost:0' instead of nil
+ as well as test/drb/ut_drb.rb. This fixes the same problem as
+ [ruby-dev:23078].
+
+ * test/drb/ut_array_drbssl.rb: ditto.
+
Fri May 27 08:35:04 2011 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/tk.rb: hang-up at exit before calling Tk.mainloop.
diff --git a/test/drb/ut_array.rb b/test/drb/ut_array.rb
index 6d9778ffbc..ad5ce0e3e5 100644
--- a/test/drb/ut_array.rb
+++ b/test/drb/ut_array.rb
@@ -8,7 +8,7 @@ if __FILE__ == $0
it
end
- DRb.start_service(nil, [1, 2, 'III', 4, "five", 6])
+ DRb.start_service("druby://localhost:0", [1, 2, 'III', 4, "five", 6])
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
end
diff --git a/test/drb/ut_array_drbssl.rb b/test/drb/ut_array_drbssl.rb
index 5644af5600..4c4edca599 100644
--- a/test/drb/ut_array_drbssl.rb
+++ b/test/drb/ut_array_drbssl.rb
@@ -17,7 +17,7 @@ if __FILE__ == $0
config[:SSLCertName] =
[ ["C","JP"], ["O","Foo.DRuby.Org"], ["CN", "Sample"] ]
- DRb.start_service('drbssl://:0', [1, 2, 'III', 4, "five", 6], config)
+ DRb.start_service('drbssl://localhost:0', [1, 2, 'III', 4, "five", 6], config)
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
DRb.thread.join
end
diff --git a/version.h b/version.h
index dffca7657a..8891e97e4e 100644
--- a/version.h
+++ b/version.h
@@ -1,5 +1,5 @@
#define RUBY_VERSION "1.9.2"
-#define RUBY_PATCHLEVEL 272
+#define RUBY_PATCHLEVEL 273
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 9
#define RUBY_VERSION_TEENY 1