summaryrefslogtreecommitdiff
path: root/test/socket/test_tcp.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-17 14:40:06 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-17 14:40:06 +0000
commitffe229399843b3ddb86511c0627e208e989efc49 (patch)
tree327c78ac040ee95f31b66da7466c89168160f5af /test/socket/test_tcp.rb
parentf2107f2ec1cfcc9e86bb69949faf21e161516076 (diff)
* test/socket/test_tcp.rb (TestTCPSocket::test_recvfrom): typo
fixed. [ruby-dev:27123] * string.c (rb_str_substr): should propagate taintness even for empty strings. [ruby-dev:27121] * string.c (rb_str_aref): should infect result if range argument is tainted. [ruby-dev:27121] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9199 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/socket/test_tcp.rb')
-rw-r--r--test/socket/test_tcp.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/socket/test_tcp.rb b/test/socket/test_tcp.rb
index 9e6623bdfc..362f9a7157 100644
--- a/test/socket/test_tcp.rb
+++ b/test/socket/test_tcp.rb
@@ -15,12 +15,12 @@ class TestTCPSocket < Test::Unit::TestCase
ObjectSpace.each_object(String) {|s|
s.replace "a" if s.length == 0x10000 and !s.frozen?
}
- c.print("x"*0x10000)
+ c.print("x"*0x1000)
}
addr = svr.addr
sock = TCPSocket.open(addr[2], addr[1])
assert_raise(RuntimeError, SocketError) {
- p sock.recvfrom(0x10000)
+ sock.recvfrom(0x10000)
}
ensure
th.join