about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-04-02 15:33:22 +0000
committerbors <bors@rust-lang.org>2015-04-02 15:33:22 +0000
commitedac3ce6fba1063b01ca0e83841c762909d4df5d (patch)
tree859a219660624076d9ab3dcfd19bfa894f0599df /src/libstd
parent9854143cba679834bc4ef932858cd5303f015a0e (diff)
parent85c74c630512af06d361bf3707631e76c81cb925 (diff)
downloadrust-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.rs3
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");
     }
 }