diff options
| author | Sébastien Marie <semarie@users.noreply.github.com> | 2015-11-28 09:10:48 +0100 |
|---|---|---|
| committer | Sébastien Marie <semarie@users.noreply.github.com> | 2015-11-28 09:10:48 +0100 |
| commit | 6a7733a3584c74b94529458a27dbf7b87827b019 (patch) | |
| tree | e0be2024adfe64538e089b580f3b0252c06c74ef /src/libstd/net | |
| parent | 646b0b639228bcc5e506959e5e758f33fe6f4fff (diff) | |
| download | rust-6a7733a3584c74b94529458a27dbf7b87827b019.tar.gz rust-6a7733a3584c74b94529458a27dbf7b87827b019.zip | |
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.
Diffstat (limited to 'src/libstd/net')
| -rw-r--r-- | src/libstd/net/addr.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/net/addr.rs b/src/libstd/net/addr.rs index 66c1ab720b6..b4d0ebc13e5 100644 --- a/src/libstd/net/addr.rs +++ b/src/libstd/net/addr.rs @@ -495,9 +495,9 @@ mod tests { assert!(tsa("localhost:23924").unwrap().contains(&a)); } - // FIXME: figure out why this fails on bitrig and fix it + // FIXME: figure out why this fails on openbsd and bitrig and fix it #[test] - #[cfg(not(any(windows, target_os = "bitrig")))] + #[cfg(not(any(windows, target_os = "openbsd", target_os = "bitrig")))] fn to_socket_addr_str_bad() { assert!(tsa("1200::AB00:1234::2552:7777:1313:34300").is_err()); } |
