diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-27 07:03:29 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-27 07:03:29 +0000 |
commit | 6671baa96b2921e2cdaeb4ca4a16bcd05f5e45ff (patch) | |
tree | fe2fa61702c537812d58f103f9d353ebef51d6c7 /test/soap/helloworld/test_helloworld.rb | |
parent | eb4ace3c49b2834b38c7f79bbd8ca3e6ee6e1c3a (diff) |
* lib/soap/rpc/cgistub.rb: make logging severity threshold higher.
* lib/soap/rpc/standaloneServer.rb: defer WEBrick server start to give a change
to reset logging severity threshold.
* test/soap/calc/test_*, test/soap/helloworld/test_helloworld.rb: run silent.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4612 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/soap/helloworld/test_helloworld.rb')
-rw-r--r-- | test/soap/helloworld/test_helloworld.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/soap/helloworld/test_helloworld.rb b/test/soap/helloworld/test_helloworld.rb index 0aa552e4a8..3f12bf4a20 100644 --- a/test/soap/helloworld/test_helloworld.rb +++ b/test/soap/helloworld/test_helloworld.rb @@ -14,10 +14,11 @@ module HelloWorld class TestHelloWorld < Test::Unit::TestCase def setup @server = HelloWorldServer.new('hws', 'urn:hws', '0.0.0.0', 2000) + @server.level = Logger::Severity::UNKNOWN @t = Thread.new { @server.start } - while @server.server.status != :Running + while @server.server.nil? or @server.server.status != :Running sleep 0.1 end @client = SOAP::RPC::Driver.new('http://localhost:2000/', 'urn:hws') |