mirror of
https://github.com/python/cpython.git
synced 2026-03-04 03:50:53 +00:00
gh-126925: Modify how iOS test results are gathered (#127592)
Adds a `use_system_log` config item to enable stdout/stderr redirection for Apple platforms. This log streaming is then used by a new iOS test runner script, allowing the display of test suite output at runtime. The iOS test runner script can be used by any Python project, not just the CPython test suite.
This commit is contained in:
parent
d8d12b37b5
commit
2041a95e68
18 changed files with 792 additions and 58 deletions
|
|
@ -179,6 +179,9 @@ typedef struct PyConfig {
|
|||
int use_frozen_modules;
|
||||
int safe_path;
|
||||
int int_max_str_digits;
|
||||
#ifdef __APPLE__
|
||||
int use_system_logger;
|
||||
#endif
|
||||
|
||||
int cpu_count;
|
||||
#ifdef Py_GIL_DISABLED
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue