summaryrefslogtreecommitdiff
path: root/test/xmlrpc
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-15 14:51:48 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-15 14:51:48 +0000
commitba3bb2895f6f8bc95cf2c12d157fcac0779c7f05 (patch)
tree6fa2e2c78f79c18379341a8dd4e887a817031b2c /test/xmlrpc
parent0481de5db50d8078dc9a5995530815a72024e43a (diff)
* test/xmlrpc/webrick_testing.rb: join webrick server thread.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14245 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/xmlrpc')
-rw-r--r--test/xmlrpc/webrick_testing.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/xmlrpc/webrick_testing.rb b/test/xmlrpc/webrick_testing.rb
index eb054a77e7..2ca52bad22 100644
--- a/test/xmlrpc/webrick_testing.rb
+++ b/test/xmlrpc/webrick_testing.rb
@@ -10,7 +10,7 @@ module WEBrick_Testing
raise "already started" if @__server
@__started = false
- Thread.new {
+ @__server_thread = Thread.new {
@__server = WEBrick::HTTPServer.new(
{
:Logger => DummyLog.new,
@@ -32,6 +32,7 @@ module WEBrick_Testing
@__server.shutdown
Thread.pass while @__started # wait until the server is down
}
+ @__server_thread.join
@__server = nil
end
end