Keep the test files in the ./build/ subdirectory, if Python is not installed.
Remove two hacks which are no longer needed after #7712, because all __file__ attributes are absolute.
This commit is contained in:
parent
467298cb42
commit
0932dc5671
|
@ -160,6 +160,7 @@ import warnings
|
||||||
import unittest
|
import unittest
|
||||||
import tempfile
|
import tempfile
|
||||||
import imp
|
import imp
|
||||||
|
import sysconfig
|
||||||
|
|
||||||
|
|
||||||
# Some times __path__ and __file__ are not absolute (e.g. while running from
|
# Some times __path__ and __file__ are not absolute (e.g. while running from
|
||||||
|
@ -404,10 +405,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
|
||||||
fp.close()
|
fp.close()
|
||||||
|
|
||||||
# Strip .py extensions.
|
# Strip .py extensions.
|
||||||
if args:
|
removepy(args)
|
||||||
args = map(removepy, args)
|
removepy(tests)
|
||||||
if tests:
|
|
||||||
tests = map(removepy, tests)
|
|
||||||
|
|
||||||
stdtests = STDTESTS[:]
|
stdtests = STDTESTS[:]
|
||||||
nottests = NOTTESTS[:]
|
nottests = NOTTESTS[:]
|
||||||
|
@ -665,16 +664,15 @@ NOTTESTS = [
|
||||||
|
|
||||||
def findtests(testdir=None, stdtests=STDTESTS, nottests=NOTTESTS):
|
def findtests(testdir=None, stdtests=STDTESTS, nottests=NOTTESTS):
|
||||||
"""Return a list of all applicable test modules."""
|
"""Return a list of all applicable test modules."""
|
||||||
if not testdir: testdir = findtestdir()
|
testdir = findtestdir(testdir)
|
||||||
names = os.listdir(testdir)
|
names = os.listdir(testdir)
|
||||||
tests = []
|
tests = []
|
||||||
|
others = set(stdtests + nottests)
|
||||||
for name in names:
|
for name in names:
|
||||||
if name[:5] == "test_" and name[-3:] == os.extsep+"py":
|
modname, ext = os.path.splitext(name)
|
||||||
modname = name[:-3]
|
if modname[:5] == "test_" and ext == ".py" and modname not in others:
|
||||||
if modname not in stdtests and modname not in nottests:
|
tests.append(modname)
|
||||||
tests.append(modname)
|
return stdtests + sorted(tests)
|
||||||
tests.sort()
|
|
||||||
return stdtests + tests
|
|
||||||
|
|
||||||
def runtest(test, verbose, quiet,
|
def runtest(test, verbose, quiet,
|
||||||
testdir=None, huntrleaks=False, use_resources=None):
|
testdir=None, huntrleaks=False, use_resources=None):
|
||||||
|
@ -825,8 +823,7 @@ class saved_test_environment:
|
||||||
def runtest_inner(test, verbose, quiet,
|
def runtest_inner(test, verbose, quiet,
|
||||||
testdir=None, huntrleaks=False):
|
testdir=None, huntrleaks=False):
|
||||||
test_support.unload(test)
|
test_support.unload(test)
|
||||||
if not testdir:
|
testdir = findtestdir(testdir)
|
||||||
testdir = findtestdir()
|
|
||||||
if verbose:
|
if verbose:
|
||||||
capture_stdout = None
|
capture_stdout = None
|
||||||
else:
|
else:
|
||||||
|
@ -1054,18 +1051,16 @@ def dash_R_cleanup(fs, ps, pic, zdc, abcs):
|
||||||
# Collect cyclic trash.
|
# Collect cyclic trash.
|
||||||
gc.collect()
|
gc.collect()
|
||||||
|
|
||||||
def findtestdir():
|
def findtestdir(path=None):
|
||||||
if __name__ == '__main__':
|
return path or os.path.dirname(__file__) or os.curdir
|
||||||
file = sys.argv[0]
|
|
||||||
else:
|
|
||||||
file = __file__
|
|
||||||
testdir = os.path.dirname(file) or os.curdir
|
|
||||||
return testdir
|
|
||||||
|
|
||||||
def removepy(name):
|
def removepy(names):
|
||||||
if name.endswith(os.extsep + "py"):
|
if not names:
|
||||||
name = name[:-3]
|
return
|
||||||
return name
|
for idx, name in enumerate(names):
|
||||||
|
basename, ext = os.path.splitext(name)
|
||||||
|
if ext == '.py':
|
||||||
|
names[idx] = basename
|
||||||
|
|
||||||
def count(n, word):
|
def count(n, word):
|
||||||
if n == 1:
|
if n == 1:
|
||||||
|
@ -1083,7 +1078,7 @@ def printlist(x, width=70, indent=4):
|
||||||
|
|
||||||
from textwrap import fill
|
from textwrap import fill
|
||||||
blanks = ' ' * indent
|
blanks = ' ' * indent
|
||||||
print fill(' '.join(map(str, x)), width,
|
print fill(' '.join(str(elt) for elt in x), width,
|
||||||
initial_indent=blanks, subsequent_indent=blanks)
|
initial_indent=blanks, subsequent_indent=blanks)
|
||||||
|
|
||||||
# Map sys.platform to a string containing the basenames of tests
|
# Map sys.platform to a string containing the basenames of tests
|
||||||
|
@ -1510,31 +1505,25 @@ class _ExpectedSkips:
|
||||||
return self.expected
|
return self.expected
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
# Remove regrtest.py's own directory from the module search path. This
|
# Simplification for findtestdir().
|
||||||
# prevents relative imports from working, and relative imports will screw
|
assert __file__ == os.path.abspath(sys.argv[0])
|
||||||
# up the testing framework. E.g. if both test.test_support and
|
|
||||||
# test_support are imported, they will not contain the same globals, and
|
|
||||||
# much of the testing framework relies on the globals in the
|
|
||||||
# test.test_support module.
|
|
||||||
mydir = os.path.abspath(os.path.normpath(os.path.dirname(sys.argv[0])))
|
|
||||||
i = len(sys.path)
|
|
||||||
while i >= 0:
|
|
||||||
i -= 1
|
|
||||||
if os.path.abspath(os.path.normpath(sys.path[i])) == mydir:
|
|
||||||
del sys.path[i]
|
|
||||||
|
|
||||||
# findtestdir() gets the dirname out of sys.argv[0], so we have to make it
|
|
||||||
# absolute before changing the CWD.
|
|
||||||
if sys.argv[0]:
|
|
||||||
sys.argv[0] = os.path.abspath(sys.argv[0])
|
|
||||||
|
|
||||||
|
# When tests are run from the Python build directory, it is best practice
|
||||||
|
# to keep the test files in a subfolder. It eases the cleanup of leftover
|
||||||
|
# files using command "make distclean".
|
||||||
|
if sysconfig.is_python_build():
|
||||||
|
parent_dir = os.path.join(sysconfig.get_config_var('srcdir'), 'build')
|
||||||
|
if not os.path.exists(parent_dir):
|
||||||
|
os.mkdir(parent_dir)
|
||||||
|
else:
|
||||||
|
parent_dir = os.path.abspath(tempfile.gettempdir())
|
||||||
|
|
||||||
# Define a writable temp dir that will be used as cwd while running
|
# Define a writable temp dir that will be used as cwd while running
|
||||||
# the tests. The name of the dir includes the pid to allow parallel
|
# the tests. The name of the dir includes the pid to allow parallel
|
||||||
# testing (see the -j option).
|
# testing (see the -j option).
|
||||||
TESTCWD = 'test_python_{}'.format(os.getpid())
|
TESTCWD = 'test_python_{}'.format(os.getpid())
|
||||||
|
|
||||||
TESTCWD = os.path.abspath(os.path.join(tempfile.gettempdir(), TESTCWD))
|
TESTCWD = os.path.join(parent_dir, TESTCWD)
|
||||||
|
|
||||||
# Run the tests in a context manager that temporary changes the CWD to a
|
# Run the tests in a context manager that temporary changes the CWD to a
|
||||||
# temporary and writable directory. If it's not possible to create or
|
# temporary and writable directory. If it's not possible to create or
|
||||||
|
|
Loading…
Reference in New Issue