Skip to content

Commit

Permalink
bootstrap: add a FIXME for failing assertion on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jieyouxu committed Aug 17, 2024
1 parent dc2973a commit e736cb4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/bootstrap/src/core/config/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ fn detect_src_and_out() {

// test if build-dir was manually given in config.toml
if let Some(custom_build_dir) = build_dir {
// FIXME(jieyouxu): this assertion fails on native Windows because if the rust checkout
// and build directory is on `E:\\` not `C:\\`, then it fails with e.g. `E:\\tmp !=
// C:\\tmp`.
assert_eq!(&cfg.out, Path::new(custom_build_dir));
}
// test the native bootstrap way
Expand Down

0 comments on commit e736cb4

Please sign in to comment.