We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c303e76 commit 89afc5cCopy full SHA for 89afc5c
src/bootstrap/src/lib.rs
@@ -1387,6 +1387,9 @@ impl Build {
1387
if let Some(path) = finder.maybe_have("wasmtime") {
1388
if let Ok(mut path) = path.into_os_string().into_string() {
1389
path.push_str(" run -C cache=n --dir .");
1390
+ // Make sure that tests have access to RUSTC_BOOTSTRAP. This (for example) is
1391
+ // required for libtest to work on beta/stable channels.
1392
+ path.push_str(" --env RUSTC_BOOTSTRAP");
1393
return Some(path);
1394
}
1395
0 commit comments