You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2012/05/30 17:31:08 UTC

svn commit: r1344311 - /subversion/trunk/win-tests.py

Author: rhuijben
Date: Wed May 30 15:31:08 2012
New Revision: 1344311

URL: http://svn.apache.org/viewvc?rev=1344311&view=rev
Log:
More test run performance tweaks: Disable .htaccess and symlink processing
while running the dav tests on Windows.

* win-tests.py
  (Httpd.__init__): Write a <Directory /> block

Modified:
    subversion/trunk/win-tests.py

Modified: subversion/trunk/win-tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/win-tests.py?rev=1344311&r1=1344310&r2=1344311&view=diff
==============================================================================
--- subversion/trunk/win-tests.py (original)
+++ subversion/trunk/win-tests.py Wed May 30 15:31:08 2012
@@ -534,6 +534,12 @@ class Httpd:
     fp.write(self._svn_module('dav_svn_module', 'mod_dav_svn.so'))
     fp.write(self._svn_module('authz_svn_module', 'mod_authz_svn.so'))
 
+    # Don't handle .htaccess, symlinks, etc.
+    fp.write('<Directory />\n')
+    fp.write('AllowOverride None\n')
+    fp.write('Options None\n')
+    fp.write('</Directory>\n\n')
+
     # Define two locations for repositories
     fp.write(self._svn_repo('repositories'))
     fp.write(self._svn_repo('local_tmp'))