diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-09-18 12:55:05 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-09-18 12:55:05 +0000 |
commit | c49559f1c1ee8ffbc53d6f666629a9e29e7e4c94 (patch) | |
tree | 8c1865d8de0dcefd8c57b131ea042eb218a5f17d /test/rinda | |
parent | 36850b789c872cd545277e2a009522cd0bbb0537 (diff) | |
download | bundler-c49559f1c1ee8ffbc53d6f666629a9e29e7e4c94.tar.gz |
Skip EHOSTUNREACH by host issues
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64774 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rinda')
-rw-r--r-- | test/rinda/test_rinda.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/rinda/test_rinda.rb b/test/rinda/test_rinda.rb index cde5f22bb6..9a25661bd9 100644 --- a/test/rinda/test_rinda.rb +++ b/test/rinda/test_rinda.rb @@ -601,6 +601,8 @@ module RingIPv6 return # IPv6 address for multicast not available rescue Errno::ENETDOWN return # Network is down + rescue Errno::EHOSTUNREACH + return # Unreachable for some reason end begin yield v6mc |