Skip to content

Commit 6a7733a

Browse files
committed
disable net::addr::to_socket_addr_str_bad test under openbsd
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.
1 parent 646b0b6 commit 6a7733a

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
@@ -495,9 +495,9 @@ mod tests {
495495
assert!(tsa("localhost:23924").unwrap().contains(&a));
496496
}
497497

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

0 commit comments

Comments
 (0)