diff options
| author | Marcel Hellwig <git@cookiesoft.de> | 2019-05-13 09:13:07 +0200 |
|---|---|---|
| committer | Marcel Hellwig <git@cookiesoft.de> | 2019-05-13 11:09:06 +0200 |
| commit | cc314b066a2f1d688ec2f5dec1fa5cb01ca1ebb0 (patch) | |
| tree | a8b5e6df9bcbf3c265928fdffd84aa63a31ac8c1 /src/libstd/net | |
| parent | fe5f42cdb88d8ce31f746130099321e7c95e1ef0 (diff) | |
| download | rust-cc314b066a2f1d688ec2f5dec1fa5cb01ca1ebb0.tar.gz rust-cc314b066a2f1d688ec2f5dec1fa5cb01ca1ebb0.zip | |
Remove bitrig support from rust
Diffstat (limited to 'src/libstd/net')
| -rw-r--r-- | src/libstd/net/addr.rs | 4 | ||||
| -rw-r--r-- | src/libstd/net/tcp.rs | 4 | ||||
| -rw-r--r-- | src/libstd/net/udp.rs | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/libstd/net/addr.rs b/src/libstd/net/addr.rs index ec54d8a042a..e7923e381f1 100644 --- a/src/libstd/net/addr.rs +++ b/src/libstd/net/addr.rs @@ -974,9 +974,9 @@ mod tests { // s has been moved into the tsa call } - // FIXME: figure out why this fails on openbsd and bitrig and fix it + // FIXME: figure out why this fails on openbsd and fix it #[test] - #[cfg(not(any(windows, target_os = "openbsd", target_os = "bitrig")))] + #[cfg(not(any(windows, target_os = "openbsd")))] fn to_socket_addr_str_bad() { assert!(tsa("1200::AB00:1234::2552:7777:1313:34300").is_err()); } diff --git a/src/libstd/net/tcp.rs b/src/libstd/net/tcp.rs index 0460ac9d753..cdffa390223 100644 --- a/src/libstd/net/tcp.rs +++ b/src/libstd/net/tcp.rs @@ -1595,9 +1595,9 @@ mod tests { assert_eq!(format!("{:?}", stream), compare); } - // FIXME: re-enabled bitrig/openbsd tests once their socket timeout code + // FIXME: re-enabled openbsd tests once their socket timeout code // no longer has rounding errors. - #[cfg_attr(any(target_os = "bitrig", target_os = "netbsd", target_os = "openbsd"), ignore)] + #[cfg_attr(any(target_os = "netbsd", target_os = "openbsd"), ignore)] #[cfg_attr(target_env = "sgx", ignore)] // FIXME: https://github.com/fortanix/rust-sgx/issues/31 #[test] fn timeouts() { diff --git a/src/libstd/net/udp.rs b/src/libstd/net/udp.rs index d4187d2932b..61d9149952e 100644 --- a/src/libstd/net/udp.rs +++ b/src/libstd/net/udp.rs @@ -1024,9 +1024,9 @@ mod tests { assert_eq!(format!("{:?}", udpsock), compare); } - // FIXME: re-enabled bitrig/openbsd/netbsd tests once their socket timeout code + // FIXME: re-enabled openbsd/netbsd tests once their socket timeout code // no longer has rounding errors. - #[cfg_attr(any(target_os = "bitrig", target_os = "netbsd", target_os = "openbsd"), ignore)] + #[cfg_attr(any(target_os = "netbsd", target_os = "openbsd"), ignore)] #[test] fn timeouts() { let addr = next_test_ip4(); |
