You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Locking the exact version in Cargo.toml, then retest for each version changes
wasm-bindgen = "=0.2.42"
wasm-bindgen = "=0.2.43"
wasm-bindgen = "=0.2.44"
If applicable, add a link to a test case (as a zip file or link to a repository we can clone).
Expected Behavior
It should not break the previous version with minor patch
Actual Behavior
It breaks in minor patch 0.2.44
Additional Context
Here is the log I got from geckodriver:
driver status: signal: 9
driver stdout:
1558331864734 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.jLF5CTSDCtSQ"
1558331865061 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: mozillaAddons
1558331865061 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: resource://pdf.js/
1558331865061 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid extension permission: about:reader*
1558331866293 Marionette INFO Listening on port 43087
1558331886636 Marionette INFO Stopped listening on port 43087
driver stderr:
*** You are running in headless mode.
JavaScript error: http://127.0.0.1:41115/wasm-bindgen-test, line 1962: TypeError: Body has already been consumed.
[Parent 25535, Gecko_IOThread] WARNING: pipe error (63): Connection reset by peer: file /build/firefox-OLGGCZ/firefox-66.0.5+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 357
[Parent 25535, Gecko_IOThread] WARNING: pipe error (65): Connection reset by peer: file /build/firefox-OLGGCZ/firefox-66.0.5+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 357
error: some tests failed
error: test failed, to rerun pass '--test create_element_tests'
The text was updated successfully, but these errors were encountered:
Thanks for the report! After some testing I believe this is the same issue as #1544, so since that is merged I'm going to close this. (I think I've also confirmed that this works locally)
Describe the Bug
version 0.2.42 - works
version 0.2.43 - works
version 0.2.44 - error
I don't know which specific part of this code that triggers the error.
This is the test code.
The code can be found in here
Steps to Reproduce
Locking the exact version in Cargo.toml, then retest for each version changes
wasm-bindgen = "=0.2.42"
wasm-bindgen = "=0.2.43"
wasm-bindgen = "=0.2.44"
If applicable, add a link to a test case (as a zip file or link to a repository we can clone).
Expected Behavior
It should not break the previous version with minor patch
Actual Behavior
It breaks in minor patch 0.2.44
Additional Context
Here is the log I got from geckodriver:
The text was updated successfully, but these errors were encountered: