From 64340fdd646d88f5b4ae2a670d9026f31f617653 Mon Sep 17 00:00:00 2001 From: Jeong Yunwon Date: Sun, 17 Jul 2022 00:39:38 +0900 Subject: [PATCH] mark failing tests of test_support.py --- Lib/test/test_support.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index cc910c42d..3d548cc26 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -419,6 +419,8 @@ class TestSupport(unittest.TestCase): self.OtherClass, self.RefClass, ignore=ignore) self.assertEqual(set(), missing_items) + # TODO: RUSTPYTHON + @unittest.expectedFailure def test_check__all__(self): extra = {'tempdir'} not_exported = {'template'} @@ -441,6 +443,8 @@ class TestSupport(unittest.TestCase): self.assertRaises(AssertionError, support.check__all__, self, unittest) + # TODO: RUSTPYTHON + @unittest.expectedFailure @unittest.skipUnless(hasattr(os, 'waitpid') and hasattr(os, 'WNOHANG'), 'need os.waitpid() and os.WNOHANG') def test_reap_children(self):