summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@debian.org>2018-08-01 20:44:36 -0400
committerJames McCoy <jamessan@debian.org>2024-01-01 09:47:20 -0500
commit14d6e1d891eef4f9dcffc300bef7f93d4ed97f14 (patch)
tree05afed9151ba0993d1b108de2cd6bed51f7ab711
parent5bfb5b0a793d80d34c20059fa03005caaa1181f2 (diff)
workaround_EINVAL_on_kfreebsd
Gbp-Pq: Name workaround_EINVAL_on_kfreebsd
-rw-r--r--subversion/bindings/swig/ruby/test/util.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/subversion/bindings/swig/ruby/test/util.rb b/subversion/bindings/swig/ruby/test/util.rb
index 4f54992..d61b715 100644
--- a/subversion/bindings/swig/ruby/test/util.rb
+++ b/subversion/bindings/swig/ruby/test/util.rb
@@ -371,6 +371,8 @@ exit 1
TCPSocket.new(@svnserve_host, port).close
rescue Errno::ECONNREFUSED
sleep(n < 10 ? 0.2 : 0.5)
+ rescue Errno::EINVAL
+ sleep(n < 10 ? 0.2 : 0.5)
else
return true
end