Author: rhuijben
Date: Tue Feb 3 17:42:58 2015
New Revision: 1656844
URL: http://svn.apache.org/r1656844
Log:
Following up on r1656778, tweak calculation of where to create the
authz file. This should fix the problem on buildbots that cleanup
their test environment better than my local scripts.
* build/run_tests.py
(_run_c_test): Add proper intermediate path to write authz file.
Modified:
subversion/trunk/build/run_tests.py
Modified: subversion/trunk/build/run_tests.py
URL:
http://svn.apache.org/viewvc/subversion/trunk/build/run_tests.py?rev=1656844&r1=1656843&r2=1656844&view=diff
==============================================================================
--- subversion/trunk/build/run_tests.py (original)
+++ subversion/trunk/build/run_tests.py Tue Feb 3 17:42:58 2015
@@ -396,7 +396,7 @@ class TestHarness:
# Enable access for http
if self.base_url.startswith('http'):
- open(os.path.join(self.builddir, 'authz'), 'w').write(
+ open(os.path.join(self.builddir, subdir, 'authz'), 'w').write(
'[/]\n' +
'* = rw\n')