Skip to content

Commit 7499558

Browse files
committed
Auto merge of #30092 - semarie:to_socket_addr_str_bad, r=alexcrichton
I don't reproduce it on severals hosts (virtual or real), so I can't debug it. As Bitrig has disabled this test too, I will follow the same here. r? @alexcrichton
2 parents 0b34243 + 6a7733a commit 7499558

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/net/addr.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,9 +496,9 @@ mod tests {
496496
assert!(tsa("localhost:23924").unwrap().contains(&a));
497497
}
498498

499-
// FIXME: figure out why this fails on bitrig and fix it
499+
// FIXME: figure out why this fails on openbsd and bitrig and fix it
500500
#[test]
501-
#[cfg(not(any(windows, target_os = "bitrig")))]
501+
#[cfg(not(any(windows, target_os = "openbsd", target_os = "bitrig")))]
502502
fn to_socket_addr_str_bad() {
503503
assert!(tsa("1200::AB00:1234::2552:7777:1313:34300").is_err());
504504
}

0 commit comments

Comments
 (0)