We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5c027d commit c762aa6Copy full SHA for c762aa6
src/bootstrap/src/core/config/tests.rs
@@ -66,6 +66,9 @@ fn detect_src_and_out() {
66
67
// test if build-dir was manually given in config.toml
68
if let Some(custom_build_dir) = build_dir {
69
+ // FIXME(#129188): this assertion fails on native Windows because if the rust checkout
70
+ // and build directory is on `E:\\` not `C:\\`, then it fails with e.g. `E:\\tmp !=
71
+ // C:\\tmp`.
72
assert_eq!(&cfg.out, Path::new(custom_build_dir));
73
}
74
// test the native bootstrap way
0 commit comments