diff options
author | Charles-François Natali <cf.natali@gmail.com> | 2013-08-29 17:01:40 (GMT) |
---|---|---|
committer | Charles-François Natali <cf.natali@gmail.com> | 2013-08-29 17:01:40 (GMT) |
commit | 5fd2642adb3874a4e6efc72a0782f4e98e7c6ad0 (patch) | |
tree | a9d9a7deec5dbb3d9df43d06e01364c6a8dc6401 /Lib/test/support | |
parent | 4af4d273bd2c18e8e3d56dc43a877ce04a5a1e13 (diff) | |
download | cpython-5fd2642adb3874a4e6efc72a0782f4e98e7c6ad0.zip cpython-5fd2642adb3874a4e6efc72a0782f4e98e7c6ad0.tar.gz cpython-5fd2642adb3874a4e6efc72a0782f4e98e7c6ad0.tar.bz2 |
Issue #18643: Fix some test_socket failures due to large default socket buffer
sizes.
Diffstat (limited to 'Lib/test/support')
-rw-r--r-- | Lib/test/support/__init__.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index 1c6ee03..1ab2136 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -601,8 +601,14 @@ IPV6_ENABLED = _is_ipv6_enabled() # Windows limit seems to be around 512 B, and many Unix kernels have a # 64 KiB pipe buffer size or 16 * PAGE_SIZE: take a few megs to be sure. # (see issue #17835 for a discussion of this number). -PIPE_MAX_SIZE = 4 *1024 * 1024 + 1 - +PIPE_MAX_SIZE = 4 * 1024 * 1024 + 1 + +# A constant likely larger than the underlying OS socket buffer size, to make +# writes blocking. +# The socket buffer sizes can usually be tuned system-wide (e.g. through sysctl +# on Linux), or on a per-socket basis (SO_SNDBUF/SO_RCVBUF). See issue #18643 +# for a discussion of this number). +SOCK_MAX_SIZE = 16 * 1024 * 1024 + 1 # decorator for skipping tests on non-IEEE 754 platforms requires_IEEE_754 = unittest.skipUnless( |