mirror of https://github.com/pyodide/pyodide.git
TST Fix test_pywasmcross.py::test_handle_command (#1032)
This commit is contained in:
parent
5ed423d9b3
commit
d5a7ada6ff
|
@ -64,7 +64,7 @@ def test_handle_command():
|
|||
args = Args(cflags="", cxxflags="", ldflags="", host="", replace_libs="bob=fred")
|
||||
assert (
|
||||
handle_command_wrap("gcc -shared -c test.o -lbob -o test.so", args)
|
||||
== "emcc -shared -c test.bc -lfred -o test.wasm"
|
||||
== "emcc -shared -c test.o -lfred -o test.wasm"
|
||||
)
|
||||
|
||||
# compilation checks in numpy
|
||||
|
|
Loading…
Reference in New Issue