Skip to content

Commit 724ba7f

Browse files
committed
Auto merge of #117041 - matthiaskrgr:rollup-b18h0ln, r=matthiaskrgr
Rollup of 4 pull requests Successful merges: - #116985 (Use gdb.ValuePrinter tag class) - #116989 (Skip test if Unix sockets are unsupported) - #117034 (Don't crash on empty match in the `nonexhaustive_omitted_patterns` lint) - #117037 (rustdoc book doc example error) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 3932c87 + 77d8a73 commit 724ba7f

File tree

5 files changed

+180
-152
lines changed

5 files changed

+180
-152
lines changed

compiler/rustc_mir_build/src/thir/pattern/usefulness.rs

+3
Original file line numberDiff line numberDiff line change
@@ -884,6 +884,9 @@ fn collect_nonexhaustive_missing_variants<'p, 'tcx>(
884884
cx: &MatchCheckCtxt<'p, 'tcx>,
885885
column: &[&DeconstructedPat<'p, 'tcx>],
886886
) -> Vec<WitnessPat<'tcx>> {
887+
if column.is_empty() {
888+
return Vec::new();
889+
}
887890
let ty = column[0].ty();
888891
let pcx = &PatCtxt { cx, ty, span: DUMMY_SP, is_top_level: false };
889892

library/std/src/fs/tests.rs

+11-2
Original file line numberDiff line numberDiff line change
@@ -1717,7 +1717,7 @@ fn windows_unix_socket_exists() {
17171717
let tmp = tmpdir();
17181718
let socket_path = tmp.join("socket");
17191719

1720-
// std doesn't current support Unix sockets on Windows so manually create one here.
1720+
// std doesn't currently support Unix sockets on Windows so manually create one here.
17211721
net::init();
17221722
unsafe {
17231723
let socket = c::WSASocketW(
@@ -1728,7 +1728,16 @@ fn windows_unix_socket_exists() {
17281728
0,
17291729
c::WSA_FLAG_OVERLAPPED | c::WSA_FLAG_NO_HANDLE_INHERIT,
17301730
);
1731-
assert_ne!(socket, c::INVALID_SOCKET);
1731+
// AF_UNIX is not supported on earlier versions of Windows,
1732+
// so skip this test if it's unsupported and we're not in CI.
1733+
if socket == c::INVALID_SOCKET {
1734+
let error = c::WSAGetLastError();
1735+
if env::var_os("CI").is_none() && error == c::WSAEAFNOSUPPORT {
1736+
return;
1737+
} else {
1738+
panic!("Creating AF_UNIX socket failed (OS error {error})");
1739+
}
1740+
}
17321741
let mut addr = c::SOCKADDR_UN { sun_family: c::AF_UNIX, sun_path: mem::zeroed() };
17331742
let bytes = socket_path.as_os_str().as_encoded_bytes();
17341743
addr.sun_path[..bytes.len()].copy_from_slice(bytes);

src/doc/rustdoc/src/write-documentation/what-to-include.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ and your test suite, this example needs some additional code:
7373
``````text
7474
/// Example
7575
/// ```rust
76-
/// # main() -> Result<(), std::num::ParseIntError> {
76+
/// # fn main() -> Result<(), std::num::ParseIntError> {
7777
/// let fortytwo = "42".parse::<u32>()?;
7878
/// println!("{} + 10 = {}", fortytwo, fortytwo+10);
7979
/// # Ok(())

0 commit comments

Comments
 (0)