diff options
| author | Richo Healey <richo@psych0tik.net> | 2015-03-28 20:14:43 -0700 |
|---|---|---|
| committer | Richo Healey <richo@psych0tik.net> | 2015-04-01 11:04:09 -0700 |
| commit | a01138cb4f7448ba4cef4b3236ef05a546125ec9 (patch) | |
| tree | c30a6b83105669fdac103674bc2d3bc6833c6db3 /src/libstd/old_io | |
| parent | d528aa9960cb9b937d8ef6c09905a6a8076d5f3a (diff) | |
| download | rust-a01138cb4f7448ba4cef4b3236ef05a546125ec9.tar.gz rust-a01138cb4f7448ba4cef4b3236ef05a546125ec9.zip | |
std: Unignore a test for #10663
This issue is long closed. It seems that unwrapping will always panic though.
Diffstat (limited to 'src/libstd/old_io')
| -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 739439ebd15..6edb1d29160 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"); } } |
