Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
717d36a
Simplify Rc::as_ptr docs + typo fix
hkBst Jan 29, 2025
7d29a2e
bootstrap: feed stage number via `--stage` to compiletest
jieyouxu Feb 3, 2025
8a0dc27
compiletest: use `--stage` number directly instead of deriving from `…
jieyouxu Feb 3, 2025
4677d75
ci: stop mysql before removing it
marcoieni Feb 3, 2025
bd6a677
Use Option for FindNextFileHandle
ChrisDenton Feb 4, 2025
62bbaa8
Removed dependency on the field-offset crate.
davidv1992 Jan 24, 2025
ee7dc06
coverage: Store BCB node IDs in mappings, and resolve them in codegen
Zalathar Jan 20, 2025
20d051e
coverage: Defer part of counter-creation until codegen
Zalathar Jan 22, 2025
bf1f254
coverage: Don't create counters for code that was removed by MIR opts
Zalathar Jan 25, 2025
bd855b6
coverage: Remove the old code for simplifying counters after MIR opts
Zalathar Jan 25, 2025
9c486a7
Mark link_section attr with unsafe
compiler-errors Feb 7, 2025
04bbc83
Rename field in OnceWith from gen to make
compiler-errors Feb 7, 2025
a4e7f8f
Mark extern blocks as unsafe
compiler-errors Feb 7, 2025
4312d7b
Fix pattern matching mode changes and unsafe_op_in_unsafe_fn
compiler-errors Feb 7, 2025
9a73f5a
Git blame ignore recent formatting commit
ehuss Feb 9, 2025
b01c7f6
fix(libtest): Enable Instant on Emscripten targets
purplesyringa Jan 31, 2025
df94005
Don't apply editorconfig to llvm
jyn514 Feb 9, 2025
2f3c943
ignore win_delete_self test in Miri
RalfJung Feb 10, 2025
09f57b2
Bump `cc` to v1.2.13 for the compiler workspace
clubby789 Feb 7, 2025
7f8108a
Rollup merge of #136053 - Zalathar:defer-counters, r=saethlin
workingjubilee Feb 10, 2025
ae732f3
Rollup merge of #136201 - davidv1992:eliminate-field-offset-alt, r=Ma…
workingjubilee Feb 10, 2025
888b438
Rollup merge of #136228 - hkBst:patch-28, r=Mark-Simulacrum
workingjubilee Feb 10, 2025
6ef2cd8
Rollup merge of #136353 - purplesyringa:libtest-instant-wasm, r=Mark-…
workingjubilee Feb 10, 2025
2a608f0
Rollup merge of #136472 - jieyouxu:pass-stage, r=Mark-Simulacrum
workingjubilee Feb 10, 2025
e1bd25e
Rollup merge of #136487 - marcoieni:disable-mysql-systemctl, r=Mark-S…
workingjubilee Feb 10, 2025
f471ce3
Rollup merge of #136552 - ChrisDenton:option-find-handle, r=Mark-Simu…
workingjubilee Feb 10, 2025
72f0205
Rollup merge of #136705 - compiler-errors:edition-library, r=jhpratt
workingjubilee Feb 10, 2025
26ca716
Rollup merge of #136707 - clubby789:cmake-bisect, r=jieyouxu
workingjubilee Feb 10, 2025
a39b275
Rollup merge of #136790 - ehuss:ignore-rustfmt-2024-again, r=compiler…
workingjubilee Feb 10, 2025
3e5f489
Rollup merge of #136792 - jyn514:editor-config, r=jieyouxu
workingjubilee Feb 10, 2025
ffa8a96
Rollup merge of #136805 - RalfJung:miri-win-delete-self, r=Noratrieb
workingjubilee Feb 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions library/std/tests/win_delete_self.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

/// Attempting to delete a running binary should return an error on Windows.
#[test]
#[cfg_attr(miri, ignore)] // `remove_file` does not work in Miri on Windows
fn win_delete_self() {
let path = std::env::current_exe().unwrap();
assert!(std::fs::remove_file(path).is_err());
Expand Down
Loading