Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34k
gh-93353: regrtest creates worker directory in the parent#93817
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Conversation
regrtest now creates the working directory of the worker process in the parent process. Don't check for temporary files if Python is run on WASI: WASI doesn't pass environment variables to the worker process.
vstinner commented Jun 15, 2022 • edited
Loading Uh oh!
There was an error while loading. Please reload this page.
edited
Uh oh!
There was an error while loading. Please reload this page.
Oh, there are many issues: Many tests failed with "OSError: AF_UNIX path too long": I created issue #93852 for that. test_compileall, test_cmd_line_script and test_urllib failed with UnicodeEncodeError: |
vstinner commented Jun 15, 2022
test_embed failed with: |
vstinner commented Jun 15, 2022
I reported issue #93855. |
regrtest now creates the working directory of the worker process in
the parent process.
Don't check for temporary files if Python is run on WASI: WASI
doesn't pass environment variables to the worker process.