mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-23 22:02:27 +00:00
Begin incorporating Python unit tests into build
We now build a separate APE binary for each test so they can run in parallel. We've got 148 tests running fast and stable so far.
This commit is contained in:
parent
51904e2687
commit
b5f743cdc3
121 changed files with 4995 additions and 4767 deletions
15
third_party/python/Modules/main.c
vendored
15
third_party/python/Modules/main.c
vendored
|
@ -38,19 +38,22 @@ STATIC_YOINK("PyInit__stat"); // for pylifecycle.o
|
|||
STATIC_YOINK("PyInit_errno"); // for pylifecycle.o
|
||||
STATIC_YOINK("PyInit_itertools"); // for pylifecycle.o
|
||||
|
||||
PYTHON_YOINK("encodings.aliases"); // for pylifecycle.o
|
||||
PYTHON_YOINK("encodings.latin_1"); // for pylifecycle.o
|
||||
PYTHON_YOINK("encodings.utf_8"); // for pylifecycle.o
|
||||
PYTHON_YOINK("io"); // for pylifecycle.o
|
||||
PYTHON_YOINK("site"); // for pylifecycle.o
|
||||
PYTHON_YOINK("struct"); // for memoryobject.o
|
||||
|
||||
PYTHON_YOINK("io");
|
||||
PYTHON_YOINK("encodings.aliases");
|
||||
PYTHON_YOINK("encodings.latin_1");
|
||||
PYTHON_YOINK("encodings.utf_8");
|
||||
|
||||
PYTHON_YOINK("site");
|
||||
PYTHON_YOINK("_sysconfigdata_m_cosmo_x86_64_cosmo");
|
||||
|
||||
PYTHON_YOINK("_bootlocale");
|
||||
PYTHON_YOINK("warnings");
|
||||
PYTHON_YOINK("_locale");
|
||||
PYTHON_YOINK("_sysconfigdata_m_cosmo_x86_64-cosmo");
|
||||
PYTHON_YOINK("locale");
|
||||
PYTHON_YOINK("runpy");
|
||||
PYTHON_YOINK("sysconfig");
|
||||
|
||||
/* Python interpreter main program */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue