diff options
Diffstat (limited to 'Programs/_testembed.c')
-rw-r--r-- | Programs/_testembed.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Programs/_testembed.c b/Programs/_testembed.c index f7e7749..94db29b 100644 --- a/Programs/_testembed.c +++ b/Programs/_testembed.c @@ -368,6 +368,7 @@ dump_config(void) printf("_install_importlib = %i\n", config->_install_importlib); printf("_check_hash_pycs_mode = %s\n", config->_check_hash_pycs_mode); + printf("_frozen = %i\n", config->_frozen); #undef ASSERT_EQUAL #undef ASSERT_STR_EQUAL @@ -420,6 +421,8 @@ static int test_init_global_config(void) putenv("PYTHONUNBUFFERED="); Py_UnbufferedStdioFlag = 1; + Py_FrozenFlag = 1; + /* FIXME: test Py_LegacyWindowsFSEncodingFlag */ /* FIXME: test Py_LegacyWindowsStdioFlag */ @@ -525,6 +528,9 @@ static int test_init_from_config(void) config._check_hash_pycs_mode = "always"; + Py_FrozenFlag = 0; + config._frozen = 1; + _PyInitError err = _Py_InitializeFromConfig(&config); /* Don't call _PyCoreConfig_Clear() since all strings are static */ if (_Py_INIT_FAILED(err)) { |