From 09d9129f169e3d217f8ec7b3503a1c54647e58c9 Mon Sep 17 00:00:00 2001 From: ahgamut <41098605+ahgamut@users.noreply.github.com> Date: Fri, 13 May 2022 21:40:30 +0530 Subject: [PATCH] skip PYMALLOC test --- third_party/python/Lib/test/test_sys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/python/Lib/test/test_sys.py b/third_party/python/Lib/test/test_sys.py index b81ef2612..f05cf6066 100644 --- a/third_party/python/Lib/test/test_sys.py +++ b/third_party/python/Lib/test/test_sys.py @@ -780,7 +780,7 @@ class SysModuleTest(unittest.TestCase): # The function has no parameter self.assertRaises(TypeError, sys._debugmallocstats, True) - @unittest.skipUnless(hasattr(sys, "getallocatedblocks"), + @unittest.skipUnless(False and hasattr(sys, "getallocatedblocks"), "sys.getallocatedblocks unavailable on this build") def test_getallocatedblocks(self): if (os.environ.get('PYTHONMALLOC', None)