Commit bc4a834b authored by Benjamin Peterson's avatar Benjamin Peterson

this test will only work on 64-bit machines

parent 95bc0e47
...@@ -436,6 +436,7 @@ class OtherFileTests(unittest.TestCase): ...@@ -436,6 +436,7 @@ class OtherFileTests(unittest.TestCase):
finally: finally:
f.close() f.close()
@unittest.skipUnless(sys.maxsize > 2**31, "requires 64-bit system")
@test_support.precisionbigmemtest(2**31, 1) @test_support.precisionbigmemtest(2**31, 1)
def test_very_long_line(self, maxsize): def test_very_long_line(self, maxsize):
# Issue #22526 # Issue #22526
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment