You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2014/02/12 22:01:00 UTC

svn commit: r1567752 - /subversion/trunk/subversion/tests/cmdline/autoprop_tests.py

Author: philip
Date: Wed Feb 12 21:00:59 2014
New Revision: 1567752

URL: http://svn.apache.org/r1567752
Log:
Avoid occasional spurious FAILs when running autoprop_tests in parallel.

* subversion/tests/cmdline/autoprop_tests.py
  (autoprops_test): Use subdir of local_tmp.

Modified:
    subversion/trunk/subversion/tests/cmdline/autoprop_tests.py

Modified: subversion/trunk/subversion/tests/cmdline/autoprop_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/autoprop_tests.py?rev=1567752&r1=1567751&r2=1567752&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/autoprop_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/autoprop_tests.py Wed Feb 12 21:00:59 2014
@@ -102,7 +102,9 @@ def autoprops_test(sbox, cmd, cfgenable,
 
   # some directories
   wc_dir = sbox.wc_dir
-  tmp_dir = os.path.abspath(svntest.main.temp_dir)
+  tmp_dir = os.path.join(os.path.abspath(svntest.main.temp_dir), sbox.name)
+  if not os.path.isdir(tmp_dir):
+    os.makedirs(tmp_dir)
   config_dir = os.path.join(tmp_dir, 'autoprops_config_' + sbox.name)
   repos_url = sbox.repo_url