perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / python / greenlet / patches / 01-tests-disable-failing.patch
blobbf11635dfc85a0c8e06fd47b24757673c155e65e
1 --- greenlet-3.1.1/src/greenlet/tests/test_leaks.py.orig
2 +++ greenlet-3.1.1/src/greenlet/tests/test_leaks.py
3 @@ -18,6 +18,8 @@
4 from .leakcheck import ignores_leakcheck
5 from .leakcheck import RUNNING_ON_MANYLINUX
7 +import unittest
9 # pylint:disable=protected-access
11 assert greenlet.GREENLET_USE_GC # Option to disable this was removed in 1.0
12 @@ -430,6 +432,7 @@
13 @ignores_leakcheck
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)