diff options
author | Victor Stinner <vstinner@python.org> | 2021-09-20 08:30:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-20 08:30:02 (GMT) |
commit | 5e2c32e08ed77081cabd9d51f0589f81c1572732 (patch) | |
tree | 184daa7a41091b5f5a775efa637f0b0fa0beecb0 /Programs/_testembed.c | |
parent | fcbf9b176b1190301c760a921601c6488ef8b070 (diff) | |
download | cpython-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 'Programs/_testembed.c')
-rw-r--r-- | Programs/_testembed.c | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/Programs/_testembed.c b/Programs/_testembed.c index 73e1f38..7628e1a 100644 --- a/Programs/_testembed.c +++ b/Programs/_testembed.c @@ -1676,15 +1676,26 @@ static int test_run_main(void) } +static int test_run_main_loop(void) +{ + // bpo-40413: Calling Py_InitializeFromConfig()+Py_RunMain() multiple + // times must not crash. + for (int i=0; i<5; i++) { + int exitcode = test_run_main(); + if (exitcode != 0) { + return exitcode; + } + } + return 0; +} + + static int test_get_argc_argv(void) { PyConfig config; PyConfig_InitPythonConfig(&config); - wchar_t *argv[] = {L"python3", L"-c", - (L"import sys; " - L"print(f'Py_RunMain(): sys.argv={sys.argv}')"), - L"arg2"}; + wchar_t *argv[] = {L"python3", L"-c", L"pass", L"arg2"}; config_set_argv(&config, Py_ARRAY_LENGTH(argv), argv); config_set_string(&config, &config.program_name, L"./python3"); @@ -1900,6 +1911,7 @@ static struct TestCase TestCases[] = { {"test_init_warnoptions", test_init_warnoptions}, {"test_init_set_config", test_init_set_config}, {"test_run_main", test_run_main}, + {"test_run_main_loop", test_run_main_loop}, {"test_get_argc_argv", test_get_argc_argv}, // Audit |