summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-08-15 09:57:02 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-08-15 09:57:02 (GMT)
commit5e4d6398a113a9f6bab6a108f0638b989fce09e8 (patch)
treeb4b97aa81a1a22ceda258a2da77369ca09a1a115 /Lib/test
parent7491f1726ba3a5f78beddca2280f9141d559ff1c (diff)
downloadcpython-5e4d6398a113a9f6bab6a108f0638b989fce09e8.zip
cpython-5e4d6398a113a9f6bab6a108f0638b989fce09e8.tar.gz
cpython-5e4d6398a113a9f6bab6a108f0638b989fce09e8.tar.bz2
Issue #18296: Try to fix TestSendfile.test_trailers() of test_os on FreeBSD
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_os.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py
index 19457ec..8d69623 100644
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -1950,16 +1950,17 @@ class TestSendfile(unittest.TestCase):
def test_trailers(self):
TESTFN2 = support.TESTFN + "2"
+ file_data = b"abcdef"
with open(TESTFN2, 'wb') as f:
- f.write(b"abcde")
+ f.write(file_data)
with open(TESTFN2, 'rb')as f:
self.addCleanup(os.remove, TESTFN2)
- os.sendfile(self.sockno, f.fileno(), 0, 4096,
- trailers=[b"12345"])
+ os.sendfile(self.sockno, f.fileno(), 0, len(file_data),
+ trailers=[b"1234"])
self.client.close()
self.server.wait()
data = self.server.handler_instance.get_data()
- self.assertEqual(data, b"abcde12345")
+ self.assertEqual(data, b"abcdef1234")
if hasattr(os, "SF_NODISKIO"):
def test_flags(self):