[[[ Updated the 'test_create' SWIG Python repository test to create the test repository outside of REPOS_PATH. * subversion/bindings/swig/python/tests/repository.py (test_create): Updated to create the repository in a location outside of REPOS_PATH. ]]] Index: subversion/bindings/swig/python/tests/repository.py =================================================================== --- subversion/bindings/swig/python/tests/repository.py (revision 32701) +++ subversion/bindings/swig/python/tests/repository.py (working copy) @@ -1,4 +1,4 @@ -import unittest, os, setup_path, StringIO +import unittest, os, setup_path, StringIO, tempfile from svn import core, repos, fs, delta from svn.core import SubversionException @@ -37,7 +37,7 @@ using a config hash""" fs_config = { "fs-type": "fsfs" } for i in range(5): - path = os.path.join(REPOS_PATH, "test" + str(i)) + path = tempfile.mktemp("-test" + str(i)) repos.create(path, "", "", None, fs_config) repos.delete(path)