diff options
| author | bors <bors@rust-lang.org> | 2024-07-14 03:20:11 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-07-14 03:20:11 +0000 |
| commit | 4cd8dc63353a9859e3e3c2d5296024c810fc0923 (patch) | |
| tree | dcd5a7e4ac0f0595c40444c77a66aadd851674ef /src/bootstrap/mk | |
| parent | 00167abb4148d11476b0ebc127b769e0366be660 (diff) | |
| parent | 9201f183105e9d8c03afef67d89c641cc32dac88 (diff) | |
| download | rust-4cd8dc63353a9859e3e3c2d5296024c810fc0923.tar.gz rust-4cd8dc63353a9859e3e3c2d5296024c810fc0923.zip | |
Auto merge of #127705 - workingjubilee:rollup-sjlzycu, r=workingjubilee
Rollup of 3 pull requests Successful merges: - #127370 (Windows: Add experimental support for linking std-required system DLLs using raw-dylib) - #127446 (Remove memory leaks in doctests in `core`, `alloc`, and `std`) - #127677 (using correct tool mode for `run-make-support` crate) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/bootstrap/mk')
| -rw-r--r-- | src/bootstrap/mk/Makefile.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/bootstrap/mk/Makefile.in b/src/bootstrap/mk/Makefile.in index cab37e0da47..3d977bf3058 100644 --- a/src/bootstrap/mk/Makefile.in +++ b/src/bootstrap/mk/Makefile.in @@ -58,9 +58,8 @@ check-aux: library/core \ library/alloc \ --no-doc - # Some doctests have intentional memory leaks. - # Some use file system operations to demonstrate dealing with `Result`. - $(Q)MIRIFLAGS="-Zmiri-ignore-leaks -Zmiri-disable-isolation" \ + # Some doctests use file system operations to demonstrate dealing with `Result`. + $(Q)MIRIFLAGS="-Zmiri-disable-isolation" \ $(BOOTSTRAP) miri --stage 2 \ library/core \ library/alloc \ @@ -70,7 +69,7 @@ check-aux: $(BOOTSTRAP) miri --stage 2 library/std \ --no-doc -- \ --skip fs:: --skip net:: --skip process:: --skip sys::pal:: - $(Q)MIRIFLAGS="-Zmiri-ignore-leaks -Zmiri-disable-isolation" \ + $(Q)MIRIFLAGS="-Zmiri-disable-isolation" \ $(BOOTSTRAP) miri --stage 2 library/std \ --doc -- \ --skip fs:: --skip net:: --skip process:: --skip sys::pal:: |
