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
fix: Include windows.lib in manual mutest-driver UI test invocations
When running UI tests we invoke mutest-driver directly, rather than through Cargo, which means we have to add `windows.lib` to the linker search path manually. See rust-lang/rust#99466 for more details.
let metadata_cmd = cargo_metadata::MetadataCommand::new();
265
+
let metadata = metadata_cmd.exec().expect("could not retrieve Cargo metadata");
266
+
let windows_package = metadata.packages.iter().find(|package| package.name == WINDOWS_IMPORT_LIB).expect("could not retrieve windows.lib import package from manifest");
0 commit comments