1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/rexml/test_contrib.rb (ContribTester#test_pos): should not

use fixed path name for tests.  [ruby-dev:42827]
* test/rexml/test_sax.rb (SAX2Tester#test_socket): should not use
  fixed port for tests.  [ruby-dev:42828]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-12-20 21:25:49 +00:00
parent f4db8aedc8
commit 182b614869
3 changed files with 18 additions and 12 deletions

View file

@ -1,3 +1,11 @@
Tue Dec 21 06:25:43 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/rexml/test_contrib.rb (ContribTester#test_pos): should not
use fixed path name for tests. [ruby-dev:42827]
* test/rexml/test_sax.rb (SAX2Tester#test_socket): should not use
fixed port for tests. [ruby-dev:42828]
Tue Dec 21 06:10:18 2010 Nobuyoshi Nakada <nobu@ruby-lang.org> Tue Dec 21 06:10:18 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* compile.c (setup_args), vm.c (invoke_block_from_c), * compile.c (setup_args), vm.c (invoke_block_from_c),

View file

@ -74,7 +74,7 @@ DELIMITER
EOF EOF
doc = REXML::Document.new source doc = REXML::Document.new source
doc.write(out="") doc.write(out="")
assert(out[/>'>/] != nil, "Couldn't find >'>") assert(out[/>\'>/] != nil, "Couldn't find >'>")
assert(out[/\]>/] != nil, "Couldn't find ]>") assert(out[/\]>/] != nil, "Couldn't find ]>")
end end
@ -512,7 +512,8 @@ EOL
end end
def test_pos def test_pos
testfile = "/tmp/tidal#{$$}" require 'tempfile'
testfile = Tempfile.new("tidal")
testdata = %Q{<calibration> testdata = %Q{<calibration>
<section name="parameters"> <section name="parameters">
<param name="barpress">760</param> <param name="barpress">760</param>
@ -521,13 +522,12 @@ EOL
</calibration> </calibration>
} }
File.open(testfile, 'w') do |f| testfile.puts testdata
f.puts testdata testfile.rewind
assert_nothing_raised do
d = REXML::Document.new(testfile)
end end
File.open(testfile) do |f| testfile.close(true)
d = REXML::Document.new(f)
end
#File.unlink(testfile)
end end
def test_deep_clone def test_deep_clone

View file

@ -221,10 +221,8 @@ class SAX2Tester < Test::Unit::TestCase
def test_socket def test_socket
require 'socket' require 'socket'
port = 12345 server = TCPServer.new('127.0.0.1', 0)
socket = TCPSocket.new('127.0.0.1', server.addr[1])
server = TCPServer.new('127.0.0.1', port)
socket = TCPSocket.new('127.0.0.1', port)
ok = false ok = false
session = server.accept session = server.accept