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
Our windows builds that test all crates have started failing with the following error:
Finished `test` profile [unoptimized + debuginfo] target(s) in 3m 14s
error: creating test list failed
Caused by:
for `tokio-macros`, command `'D:\a\tokio\tokio\target\debug\deps\tokio_macros-2a8683d94d36d244.exe' --list --format terse` exited with code 0xc0000135: The specified module could not be found. (os error 126)
--- stdout:
--- stderr:
---
The error is happening consistently and will need to be fixed asap, as it is preventing us from merging PRs.
Any ideas?
The text was updated successfully, but these errors were encountered:
"The specified module could not be found" usually means a DLL isn't found. If someone runs it locally then they may be able to get more information. Perhaps a directory isn't in PATH that should be?
Assuming it's not a tokio change that caused this then one thing that stands out is a recent rustup change: rust-lang/rustup#3703. It used to add the bin directory to PATH but no longer does so.
Someone could try setting RUSTUP_WINDOWS_PATH_ADD_BIN=1 in the environment to check.
Our windows builds that test all crates have started failing with the following error:
The error is happening consistently and will need to be fixed asap, as it is preventing us from merging PRs.
Any ideas?
The text was updated successfully, but these errors were encountered: