Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
829c314
Check proj's parent when checking dyn compatibility
mu001999 Jan 27, 2026
e12acb9
Forbid manual `Unpin` impls for structurally pinned types
frank-king Nov 24, 2025
c7c3266
error on unsized AnonConsts
khyperia Feb 2, 2026
5e0e0a9
Use DEVELOPER_DIR instead of a custom xcode-select script
madsmtm Feb 2, 2026
1c4940b
Remove an unneeded `HashStable` derive.
nnethercote Feb 2, 2026
3a5d7df
Add a useful comment on `rustc_codegen_ssa::NativeLib`.
nnethercote Feb 3, 2026
079913e
disable socket tests in Miri
RalfJung Feb 3, 2026
a9f81ea
Convert to inline diagnostics in `rustc_attr_parsing`
JonathanBrouwer Feb 3, 2026
f8fe49e
Introduce `inline_fluent` macro
JonathanBrouwer Feb 3, 2026
6b3d1e0
Update Cargo.lock
Kobzol Feb 3, 2026
cb9c43b
Show largest job duration changes in hours and minutes, rather than j…
Kobzol Feb 3, 2026
0418f9a
coverage: Add a test case for a previously-unknown span mismatch
Zalathar Feb 3, 2026
5e30860
Don't check variables in subdiagnostic messages
JonathanBrouwer Feb 3, 2026
30f82aa
Convert to inline diagnostics in `rustc_query_system`
JonathanBrouwer Feb 3, 2026
b668057
Port `rustc_mir` to attribute parser
jamie-osec Jan 30, 2026
1722b8e
Convert to inline diagnostics in `rustc_infer`
JonathanBrouwer Feb 3, 2026
4e4192a
Try to fix `rustdoc-gui/globals.goml` flakyness
GuillaumeGomez Feb 3, 2026
1e23382
Rollup merge of #152034 - Kobzol:ci-analysis-time, r=marcoieni
JonathanBrouwer Feb 3, 2026
6f20fa0
Rollup merge of #152039 - Zalathar:context-mismatch, r=chenyukang
JonathanBrouwer Feb 3, 2026
f21b5a4
Rollup merge of #152045 - JonathanBrouwer:rustc_infer_convert, r=lqd
JonathanBrouwer Feb 3, 2026
9c7e49e
Rollup merge of #149263 - frank-king:feature/unpin-check, r=BoxyUwU
JonathanBrouwer Feb 3, 2026
64b0012
Rollup merge of #151754 - mu001999-contrib:fix/151708, r=BoxyUwU
JonathanBrouwer Feb 3, 2026
22ea97d
Rollup merge of #151848 - clubby789:rustc-mir-port, r=JonathanBrouwer
JonathanBrouwer Feb 3, 2026
7c0d97f
Rollup merge of #151874 - khyperia:error-unsized-anonconst, r=BoxyUwU
JonathanBrouwer Feb 3, 2026
e560476
Rollup merge of #151944 - JonathanBrouwer:diag4, r=jdonszelmann
JonathanBrouwer Feb 3, 2026
5d6931a
Rollup merge of #152012 - madsmtm:unselect-xcode, r=shepmaster
JonathanBrouwer Feb 3, 2026
e9c15ce
Rollup merge of #152019 - nnethercote:rm-unneeded-HashStable-derives,…
JonathanBrouwer Feb 3, 2026
54d45b0
Rollup merge of #152029 - RalfJung:miri-socket-tests, r=Mark-Simulacrum
JonathanBrouwer Feb 3, 2026
c9621df
Rollup merge of #152041 - JonathanBrouwer:query_system_convert, r=jdo…
JonathanBrouwer Feb 3, 2026
2e8cfbe
Rollup merge of #152050 - GuillaumeGomez:try-fixing-flakyness, r=Guil…
JonathanBrouwer Feb 3, 2026
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
Prev Previous commit
Next Next commit
disable socket tests in Miri
  • Loading branch information
RalfJung committed Feb 3, 2026
commit 079913ec7169bae6f48528d40da03a5da321dbe4
1 change: 1 addition & 0 deletions library/std/tests/windows_unix_socket.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![cfg(windows)]
#![cfg(not(miri))] // no socket support in Miri
#![feature(windows_unix_domain_sockets)]
// Now only test windows_unix_domain_sockets feature
// in the future, will test both unix and windows uds
Expand Down
Loading