diff options
| author | bors <bors@rust-lang.org> | 2015-04-02 15:33:22 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-04-02 15:33:22 +0000 |
| commit | edac3ce6fba1063b01ca0e83841c762909d4df5d (patch) | |
| tree | 859a219660624076d9ab3dcfd19bfa894f0599df /src/libstd | |
| parent | 9854143cba679834bc4ef932858cd5303f015a0e (diff) | |
| parent | 85c74c630512af06d361bf3707631e76c81cb925 (diff) | |
| download | rust-edac3ce6fba1063b01ca0e83841c762909d4df5d.tar.gz rust-edac3ce6fba1063b01ca0e83841c762909d4df5d.zip | |
Auto merge of #23877 - richo:gardening, r=Manishearth
I also wanted to unignore https://github.com/rust-lang/rust/blob/master/src/libsyntax/ext/expand.rs#L1768-L1777 since the issue it references is closed, but the test fails, and it's internals aren't super clear to me.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/old_io/net/addrinfo.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/old_io/net/addrinfo.rs b/src/libstd/old_io/net/addrinfo.rs index c5fa775ab4e..dd30363e316 100644 --- a/src/libstd/old_io/net/addrinfo.rs +++ b/src/libstd/old_io/net/addrinfo.rs @@ -127,11 +127,10 @@ mod test { assert!(found_local); } - #[ignore] #[test] fn issue_10663() { // Something should happen here, but this certainly shouldn't cause // everything to die. The actual outcome we don't care too much about. - get_host_addresses("example.com").unwrap(); + let _ = get_host_addresses("example.com"); } } |
