summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_embed.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-09-20 08:30:02 (GMT)
committerGitHub <noreply@github.com>2021-09-20 08:30:02 (GMT)
commit5e2c32e08ed77081cabd9d51f0589f81c1572732 (patch)
tree184daa7a41091b5f5a775efa637f0b0fa0beecb0 /Lib/test/test_embed.py
parentfcbf9b176b1190301c760a921601c6488ef8b070 (diff)
downloadcpython-5e2c32e08ed77081cabd9d51f0589f81c1572732.zip
cpython-5e2c32e08ed77081cabd9d51f0589f81c1572732.tar.gz
cpython-5e2c32e08ed77081cabd9d51f0589f81c1572732.tar.bz2
bpo-40413: test_embed tests calling Py_RunMain() multiple times (GH-28466)
Calling Py_InitializeFromConfig()+Py_RunMain() multiple times must not crash. Cleanup also test_get_argc_argv().
Diffstat (limited to 'Lib/test/test_embed.py')
-rw-r--r--Lib/test/test_embed.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_embed.py b/Lib/test/test_embed.py
index 941e307..e1b466a 100644
--- a/Lib/test/test_embed.py
+++ b/Lib/test/test_embed.py
@@ -311,6 +311,14 @@ class EmbeddingTests(EmbeddingTestsMixin, unittest.TestCase):
self.assertEqual(out.rstrip(), "Py_RunMain(): sys.argv=['-c', 'arg2']")
self.assertEqual(err, '')
+ def test_run_main_loop(self):
+ # bpo-40413: Calling Py_InitializeFromConfig()+Py_RunMain() multiple
+ # times must not crash.
+ nloop = 5
+ out, err = self.run_embedded_interpreter("test_run_main_loop")
+ self.assertEqual(out, "Py_RunMain(): sys.argv=['-c', 'arg2']\n" * nloop)
+ self.assertEqual(err, '')
+
class InitConfigTests(EmbeddingTestsMixin, unittest.TestCase):
maxDiff = 4096