From: Antoine Pitrou Date: Thu, 1 Aug 2013 18:43:26 +0000 (+0200) Subject: test_capi: make a specific test case for the subinterpreter test X-Git-Tag: v3.4.0a1~23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a2572cb4987c5dad3e478e40086e038b701a163;p=python test_capi: make a specific test case for the subinterpreter test (it was wrongly classified in the pending calls test case) --- diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py index f1ea5a9fde..62827e5986 100644 --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -193,6 +193,9 @@ class TestPendingCalls(unittest.TestCase): self.pendingcalls_submit(l, n) self.pendingcalls_wait(l, n) + +class SubinterpreterTest(unittest.TestCase): + def test_subinterps(self): import builtins r, w = os.pipe() @@ -208,6 +211,7 @@ class TestPendingCalls(unittest.TestCase): self.assertNotEqual(pickle.load(f), id(sys.modules)) self.assertNotEqual(pickle.load(f), id(builtins)) + # Bug #6012 class Test6012(unittest.TestCase): def test(self): @@ -354,7 +358,8 @@ class TestThreadState(unittest.TestCase): def test_main(): support.run_unittest(CAPITest, TestPendingCalls, Test6012, - EmbeddingTest, SkipitemTest, TestThreadState) + EmbeddingTest, SkipitemTest, TestThreadState, + SubinterpreterTest) for name in dir(_testcapi): if name.startswith('test_'):