Marcel Telka
2023-12-22 de4d485db245cd6d23bc32c7763a20e7e9514f2a
commit | author | age
de4d48 1 --- greenlet-3.0.3/src/greenlet/tests/test_leaks.py.orig
MT 2 +++ greenlet-3.0.3/src/greenlet/tests/test_leaks.py
dcd580 3 @@ -18,6 +18,8 @@
ac4d96 4  from .leakcheck import ignores_leakcheck
MT 5  from .leakcheck import RUNNING_ON_MANYLINUX
6  
7 +import unittest
8 +
dcd580 9  # pylint:disable=protected-access
MT 10  
11  assert greenlet.GREENLET_USE_GC # Option to disable this was removed in 1.0
2bc301 12 @@ -430,6 +432,7 @@
ac4d96 13      @ignores_leakcheck
MT 14      # Because we're just trying to track raw memory, not objects, and running
15      # the leakcheck makes an already slow test slower.
16 +    @unittest.skip("Always fails: https://github.com/python-greenlet/greenlet/issues/379")
17      def test_untracked_memory_doesnt_increase_unfinished_thread_dealloc_in_thread(self):
18          self._check_untracked_memory_thread(deallocate_in_thread=True)
19