Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
Closed
Description
Bug report
Bug description:
For some reason,make test is appendingpython.wasm to the command to run even thoughpython.wasm was specified as part of the host runner.
`make test` output
❯ make -C cross-build/wasm32-wasi/ testmake: Entering directory '/home/brettcannon/Repositories/python/cpython/cross-build/wasm32-wasi'The following modules are *disabled* in configure script:_sqlite3The necessary bits to build these optional modules were not found:_bz2 _ctypes _hashlib_lzma _ssl _testimportmultiple_testmultiphase _uuid readlinexxlimited xxlimited_35 zlibTo find the necessary bits, look in configure.ac and config.log.Could not build the ssl module!Python requires a OpenSSL 1.1.1 or newerChecked 109 modules (76 built-in, 0 shared, 20 n/a on wasi-wasm32, 1 disabled, 12 missing, 0 failed on import)_PYTHON_HOSTRUNNER='/home/linuxbrew/.linuxbrew/bin/wasmtime run --wasm max-wasm-stack=8388608 --wasm threads=y --wasi threads=y --dir /home/brettcannon/Repositories/python/cpython::/ --env PYTHONPATH=/cross-build/wasm32-wasi/build/lib.wasi-wasm32-3.13-pydebug /home/brettcannon/Repositories/python/cpython/cross-build/wasm32-wasi/python.wasm' _PYTHON_PROJECT_BASE=/home/brettcannon/Repositories/python/cpython/cross-build/wasm32-wasi _PYTHON_HOST_PLATFORM=wasi-wasm32 PYTHONPATH=/home/brettcannon/Repositories/python/cpython/cross-build/wasm32-wasi/build/lib.wasi-wasm32-3.13-pydebug:../../Lib _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_d_wasi_wasm32-wasi /home/brettcannon/Repositories/python/cpython/cross-build/build/python -m test --fast-ci --timeout=+ /home/brettcannon/Repositories/python/cpython/cross-build/build/python -u -W default -bb -m test --fast-ci --timeout= --python '/home/linuxbrew/.linuxbrew/bin/wasmtime run --wasm max-wasm-stack=8388608 --wasm threads=y --wasi threads=y --dir /home/brettcannon/Repositories/python/cpython::/ --env PYTHONPATH=/cross-build/wasm32-wasi/build/lib.wasi-wasm32-3.13-pydebug /home/brettcannon/Repositories/python/cpython/cross-build/wasm32-wasi/python.wasm python.wasm' --dont-add-python-opts== CPython 3.13.0a2+ (heads/main-dirty:3aa4b839e4, Jan 12 2024, 14:07:13) [Clang 17.0.6 ]== Linux-5.15.133.1-microsoft-standard-WSL2-x86_64-with-glibc2.36 little-endian== Python build: debug== cwd: /home/brettcannon/Repositories/python/cpython/cross-build/wasm32-wasi/build/test_python_worker_13486æ== CPU count: 8== encodings: locale=UTF-8 FS=utf-8== resources: all,-cpu== cross compiled: Yes== host python: /home/linuxbrew/.linuxbrew/bin/wasmtime run --wasm max-wasm-stack=8388608 --wasm threads=y --wasi threads=y --dir /home/brettcannon/Repositories/python/cpython::/ --env PYTHONPATH=/cross-build/wasm32-wasi/build/lib.wasi-wasm32-3.13-pydebug /home/brettcannon/Repositories/python/cpython/cross-build/wasm32-wasi/python.wasm python.wasmpython.wasm: can't open file '//python.wasm': [Errno 44] No such file or directory== host platform: <command failed with exit code 2>And for comparison ...
`./python.sh -m test` in `cross-build/wasm32-wasi`
❯ ./python.sh -m test== CPython 3.13.0a2+ (heads/main-dirty:3aa4b839e4, Jan 12 2024, 23:19:57) [Clang 16.0.0 ]== wasi-0.0.0-wasm32-32bit little-endian== Python build: debug== cwd: /build/test_python_worker_728488æ== CPU count: 1== encodings: locale=UTF-8 FS=utf-8== resources: all test resources are disabled, use -u option to unskip tests== host runner: /home/linuxbrew/.linuxbrew/bin/wasmtime run --wasm max-wasm-stack=8388608 --wasm threads=y --wasi threads=y --dir /home/brettcannon/Repositories/python/cpython::/ --env PYTHONPATH=/cross-build/wasm32-wasi/build/lib.wasi-wasm32-3.13-pydebug /home/brettcannon/Repositories/python/cpython/cross-build/wasm32-wasi/python.wasmCPython versions tested on:
CPython main branch
Operating systems tested on:
Other