Author: svn-role
Date: Thu Apr 30 04:00:20 2026
New Revision: 1933567
Log:
Merge r1933475 from trunk:
* r1933475
Avoid DNS reverse name lookups during test configuration.
Justification:
Reverse lookups can cause long delays or even block.
Votes:
+1: brane, dsahlberg
Modified:
subversion/branches/1.15.x/ (props changed)
subversion/branches/1.15.x/STATUS
subversion/branches/1.15.x/subversion/tests/cmdline/davautocheck.sh
subversion/branches/1.15.x/subversion/tests/cmdline/svnserveautocheck.sh
Modified: subversion/branches/1.15.x/STATUS
==============================================================================
--- subversion/branches/1.15.x/STATUS Thu Apr 30 04:00:10 2026
(r1933566)
+++ subversion/branches/1.15.x/STATUS Thu Apr 30 04:00:20 2026
(r1933567)
@@ -39,11 +39,3 @@ Veto-blocked changes:
Approved changes:
=================
-
- * r1933475
- Avoid DNS reverse name lookups during test configuration.
- Justification:
- Reverse lookups can cause long delays or even block.
- Votes:
- +1: brane, dsahlberg
-
Modified: subversion/branches/1.15.x/subversion/tests/cmdline/davautocheck.sh
==============================================================================
--- subversion/branches/1.15.x/subversion/tests/cmdline/davautocheck.sh Thu Apr
30 04:00:10 2026 (r1933566)
+++ subversion/branches/1.15.x/subversion/tests/cmdline/davautocheck.sh Thu Apr
30 04:00:20 2026 (r1933567)
@@ -337,7 +337,7 @@ fi
# Stop any previous instances, os we can re-use the port.
if [ -x $STOPSCRIPT ]; then $STOPSCRIPT ; sleep 1; fi
-ss > /dev/null 2>&1 || netstat > /dev/null 2>&1 || fail "unable to find ss or
netstat required to find a free port"
+ss -n > /dev/null 2>&1 || netstat -n > /dev/null 2>&1 || fail "unable to find
ss or netstat required to find a free port"
HTTPD_PORT=3691
while \
Modified:
subversion/branches/1.15.x/subversion/tests/cmdline/svnserveautocheck.sh
==============================================================================
--- subversion/branches/1.15.x/subversion/tests/cmdline/svnserveautocheck.sh
Thu Apr 30 04:00:10 2026 (r1933566)
+++ subversion/branches/1.15.x/subversion/tests/cmdline/svnserveautocheck.sh
Thu Apr 30 04:00:20 2026 (r1933567)
@@ -143,7 +143,7 @@ if type time > /dev/null ; then TIME_CMD
MAKE=${MAKE:-make}
PATH="$PATH:/usr/sbin/:/usr/local/sbin/"
-ss > /dev/null 2>&1 || netstat > /dev/null 2>&1 || fail "unable to find ss or
netstat required to find a free port"
+ss -n > /dev/null 2>&1 || netstat -n > /dev/null 2>&1 || fail "unable to find
ss or netstat required to find a free port"
SVNSERVE_PORT=$(random_port)
while \