summaryrefslogtreecommitdiff
path: root/subversion
diff options
context:
space:
mode:
authorJames McCoy <jamessan@debian.org>2018-08-01 20:44:36 -0400
committerJames McCoy <jamessan@debian.org>2019-01-20 14:55:02 -0500
commit75d4393434ddba74ddc057bbacc8cf003109fab3 (patch)
treed1e86147d10768086b7d44bdec00c8130a14a065 /subversion
parent19c4cfc614a2f16e763d8653509631fbddcf328d (diff)
workaround_EINVAL_on_kfreebsd
Gbp-Pq: Name workaround_EINVAL_on_kfreebsd
Diffstat (limited to 'subversion')
-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