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 3d7a292 commit 73c6b19Copy full SHA for 73c6b19
tests/suite/cli_v2.rs
@@ -305,10 +305,19 @@ fn bad_manifest() {
305
setup(&|config| {
306
// install some toolchain
307
config.expect_ok(&["rustup", "update", "nightly"]);
308
+
309
+ #[cfg(not(target_os = "windows"))]
310
let path = format!(
311
"toolchains/nightly-{}/lib/rustlib/multirust-channel-manifest.toml",
312
this_host_triple(),
313
);
314
315
+ #[cfg(target_os = "windows")]
316
+ let path = format!(
317
+ r"toolchains\nightly-{}\lib/rustlib\multirust-channel-manifest.toml",
318
+ this_host_triple(),
319
+ );
320
321
assert!(config.rustupdir.has(&path));
322
let path = config.rustupdir.join(&path);
323
0 commit comments