You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2010/04/16 09:34:02 UTC

svn commit: r934705 - /subversion/trunk/tools/dev/unix-build/Makefile.svn

Author: stsp
Date: Fri Apr 16 07:34:01 2010
New Revision: 934705

URL: http://svn.apache.org/viewvc?rev=934705&view=rev
Log:
* tools/dev/unix-build/Makefile.svn
  (stop_httpd): Sleep a bit to wait for httpd to go down. Otherwise
   a full test run can fail with "Address already in use: make_sock:
   could not bind to address 127.0.0.1:8081" while switching from
   the svn-check-neon target (which stops httpd at the end) to the
   svn-check-serf target (which starts httpd again).

Modified:
    subversion/trunk/tools/dev/unix-build/Makefile.svn

Modified: subversion/trunk/tools/dev/unix-build/Makefile.svn
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/unix-build/Makefile.svn?rev=934705&r1=934704&r2=934705&view=diff
==============================================================================
--- subversion/trunk/tools/dev/unix-build/Makefile.svn (original)
+++ subversion/trunk/tools/dev/unix-build/Makefile.svn Fri Apr 16 07:34:01 2010
@@ -776,6 +776,7 @@ start-httpd: httpd-conf
 
 stop-httpd:
 	$(HTTPD_STOP_CMD)
+	sleep 3
 
 start-svnserve: $(SVN_OBJDIR)/.compiled
 	$(SVNSERVE_START_CMD)