Skip to content

Commit d3e5689

Browse files
Use the bigmemtest decorator.
1 parent 52f35d8 commit d3e5689

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_ssl.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2997,7 +2997,8 @@ def test_echo(self):
29972997
str(e.exception))
29982998

29992999
@unittest.skipUnless(support.Py_GIL_DISABLED, "test is only useful if the GIL is disabled")
3000-
def test_ssl_in_multiple_threads(self):
3000+
@support.bigmemtest(size=12 * 2**30, memuse=1, dry_run=False)
3001+
def test_ssl_in_multiple_threads(self, size):
30013002
# See GH-124984: OpenSSL is not thread safe.
30023003
self.enterContext(
30033004
support.swap_item(globals(), 'USE_SAME_TEST_CONTEXT', True))

0 commit comments

Comments
 (0)