Skip to content

Commit db3ef0c

Browse files
gh-93117: Remove too large sqlite3 bigmemtest (#93154)
1 parent 71d8775 commit db3ef0c

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

Lib/test/test_sqlite3/test_dbapi.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import unittest
3030
import urllib.parse
3131

32-
from test.support import SHORT_TIMEOUT, bigmemtest, check_disallow_instantiation
32+
from test.support import SHORT_TIMEOUT, check_disallow_instantiation
3333
from test.support import threading_helper
3434
from _testcapi import INT_MAX, ULLONG_MAX
3535
from os import SEEK_SET, SEEK_CUR, SEEK_END
@@ -626,13 +626,6 @@ def test_deserialize_corrupt_database(self):
626626
# deserialized database.
627627
cx.execute("create table fail(f)")
628628

629-
@unittest.skipUnless(sys.maxsize > 2**32, 'requires 64bit platform')
630-
@bigmemtest(size=2**63, memuse=3, dry_run=False)
631-
def test_deserialize_too_much_data_64bit(self):
632-
with memory_database() as cx:
633-
with self.assertRaisesRegex(OverflowError, "'data' is too large"):
634-
cx.deserialize(b"b" * size)
635-
636629

637630
class OpenTests(unittest.TestCase):
638631
_sql = "create table test(id integer)"

0 commit comments

Comments
 (0)