Rollup merge of #152029 - RalfJung:miri-socket-tests, r=Mark-Simulacrum

disable socket tests in Miri

https://github.com/rust-lang/rust/pull/150428 added some tests that do not work in Miri since we do not support sockets.

r? @Mark-Simulacrum
This commit is contained in:
Jonathan Brouwer 2026-02-03 18:54:50 +01:00 committed by GitHub
commit 881604a61a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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