From a01138cb4f7448ba4cef4b3236ef05a546125ec9 Mon Sep 17 00:00:00 2001 From: Richo Healey Date: Sat, 28 Mar 2015 20:14:43 -0700 Subject: [PATCH] std: Unignore a test for #10663 This issue is long closed. It seems that unwrapping will always panic though. --- src/libstd/old_io/net/addrinfo.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libstd/old_io/net/addrinfo.rs b/src/libstd/old_io/net/addrinfo.rs index 739439ebd151..6edb1d29160b 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"); } }