diff options
author | Erlend Egeberg Aasland <erlend.aasland@protonmail.com> | 2022-05-25 14:53:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 14:53:26 +0200 |
commit | db3ef0c82a1a16db60c35f8a08c3fd9bfaa8b643 (patch) | |
tree | f5c7beb240ece57128c2d1174055576194a690c4 /Lib/test/test_sqlite3/test_dbapi.py | |
parent | 71d8775feeb647ae5003cfd466de7b58cd1bf269 (diff) | |
download | cpython-db3ef0c82a1a16db60c35f8a08c3fd9bfaa8b643.tar.gz cpython-db3ef0c82a1a16db60c35f8a08c3fd9bfaa8b643.zip |
gh-93117: Remove too large sqlite3 bigmemtest (#93154)
Diffstat (limited to 'Lib/test/test_sqlite3/test_dbapi.py')
-rw-r--r-- | Lib/test/test_sqlite3/test_dbapi.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Lib/test/test_sqlite3/test_dbapi.py b/Lib/test/test_sqlite3/test_dbapi.py index 840a401b6b3..1fa02db3b3a 100644 --- a/Lib/test/test_sqlite3/test_dbapi.py +++ b/Lib/test/test_sqlite3/test_dbapi.py @@ -29,7 +29,7 @@ import threading import unittest import urllib.parse -from test.support import SHORT_TIMEOUT, bigmemtest, check_disallow_instantiation +from test.support import SHORT_TIMEOUT, check_disallow_instantiation from test.support import threading_helper from _testcapi import INT_MAX, ULLONG_MAX from os import SEEK_SET, SEEK_CUR, SEEK_END @@ -626,13 +626,6 @@ class SerializeTests(unittest.TestCase): # deserialized database. cx.execute("create table fail(f)") - @unittest.skipUnless(sys.maxsize > 2**32, 'requires 64bit platform') - @bigmemtest(size=2**63, memuse=3, dry_run=False) - def test_deserialize_too_much_data_64bit(self): - with memory_database() as cx: - with self.assertRaisesRegex(OverflowError, "'data' is too large"): - cx.deserialize(b"b" * size) - class OpenTests(unittest.TestCase): _sql = "create table test(id integer)" |