blob: 7123ffbdd237de408f65068e6788af1517176292 [file] [log] [blame]
Benjamin Peterson90f5ba52010-03-11 22:53:45 +00001#! /usr/bin/env python3
Guido van Rossum152494a1996-12-20 03:12:20 +00002
R. David Murray0ba81e02010-04-26 17:02:32 +00003"""
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -08004Script to run Python regression tests.
Guido van Rossum152494a1996-12-20 03:12:20 +00005
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -08006Run this script with -h or --help for documentation.
7"""
8
9USAGE = """\
Georg Brandlbe41a482011-01-05 21:47:47 +000010python -m test [options] [test_name1 [test_name2 ...]]
R. David Murray0ba81e02010-04-26 17:02:32 +000011python path/to/Lib/test/regrtest.py [options] [test_name1 [test_name2 ...]]
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -080012"""
Guido van Rossum152494a1996-12-20 03:12:20 +000013
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -080014DESCRIPTION = """\
15Run Python regression tests.
R. David Murray0ba81e02010-04-26 17:02:32 +000016
17If no arguments or options are provided, finds all files matching
18the pattern "test_*" in the Lib/test subdirectory and runs
19them in alphabetical order (but see -M and -u, below, for exceptions).
20
21For more rigorous testing, it is useful to use the following
22command line:
23
Georg Brandlbe41a482011-01-05 21:47:47 +000024python -E -Wd -m test [options] [test_name1 ...]
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -080025"""
R. David Murray0ba81e02010-04-26 17:02:32 +000026
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -080027EPILOG = """\
28Additional option details:
Guido van Rossumf58ed251997-03-07 21:04:33 +000029
Collin Winterfd12f492009-03-29 04:05:05 +000030-r randomizes test execution order. You can use --randseed=int to provide a
31int seed value for the randomizer; this is useful for reproducing troublesome
32test orders.
33
R. David Murray0ba81e02010-04-26 17:02:32 +000034-s On the first invocation of regrtest using -s, the first test file found
35or the first test file given on the command line is run, and the name of
36the next test is recorded in a file named pynexttest. If run from the
37Python build directory, pynexttest is located in the 'build' subdirectory,
38otherwise it is located in tempfile.gettempdir(). On subsequent runs,
39the test in pynexttest is run, and the next test is written to pynexttest.
40When the last test has been run, pynexttest is deleted. In this way it
41is possible to single step through the test files. This is useful when
42doing memory analysis on the Python interpreter, which process tends to
43consume too many resources to run the full regression test non-stop.
Barry Warsawe11e3de1999-01-28 19:51:51 +000044
Neal Norwitz94fa2ee2008-03-31 02:55:15 +000045-S is used to continue running tests after an aborted run. It will
46maintain the order a standard run (ie, this assumes -r is not used).
47This is useful after the tests have prematurely stopped for some external
48reason and you want to start running from where you left off rather
49than starting from the beginning.
50
Guido van Rossum9e9d4f82002-06-07 15:17:03 +000051-f reads the names of tests from the file given as f's argument, one
52or more test names per line. Whitespace is ignored. Blank lines and
53lines beginning with '#' are ignored. This is especially useful for
54whittling down failures involving interactions among tests.
Tim Petersc5000df2002-06-02 21:42:01 +000055
Skip Montanaro0179a182004-06-06 15:53:18 +000056-L causes the leaks(1) command to be run just before exit if it exists.
57leaks(1) is available on Mac OS X and presumably on some other
58FreeBSD-derived systems.
59
Michael W. Hudson61147f62004-08-03 11:33:28 +000060-R runs each test several times and examines sys.gettotalrefcount() to
61see if the test appears to be leaking references. The argument should
62be of the form stab:run:fname where 'stab' is the number of times the
63test is run to let gettotalrefcount settle down, 'run' is the number
64of times further it is run and 'fname' is the name of the file the
65reports are written to. These parameters all have defaults (5, 4 and
Neal Norwitz94fa2ee2008-03-31 02:55:15 +000066"reflog.txt" respectively), and the minimal invocation is '-R :'.
Michael W. Hudson61147f62004-08-03 11:33:28 +000067
Thomas Wouters477c8d52006-05-27 19:21:47 +000068-M runs tests that require an exorbitant amount of memory. These tests
69typically try to ascertain containers keep working when containing more than
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000702 billion objects, which only works on 64-bit systems. There are also some
71tests that try to exhaust the address space of the process, which only makes
72sense on 32-bit systems with at least 2Gb of memory. The passed-in memlimit,
Thomas Wouters477c8d52006-05-27 19:21:47 +000073which is a string in the form of '2.5Gb', determines howmuch memory the
74tests will limit themselves to (but they may go slightly over.) The number
75shouldn't be more memory than the machine has (including swap memory). You
76should also keep in mind that swap memory is generally much, much slower
77than RAM, and setting memlimit to all available RAM or higher will heavily
78tax the machine. On the other hand, it is no use running these tests with a
79limit of less than 2.5Gb, and many require more than 20Gb. Tests that expect
80to use more than memlimit memory will be skipped. The big-memory tests
81generally run very, very long.
82
Guido van Rossum9e9d4f82002-06-07 15:17:03 +000083-u is used to specify which special resource intensive tests to run,
84such as those requiring large file support or network connectivity.
85The argument is a comma-separated list of words indicating the
86resources to test. Currently only the following are defined:
Barry Warsaw08fca522001-08-20 22:33:46 +000087
Fred Drake3a15dac2002-04-11 16:39:16 +000088 all - Enable all special resources.
89
Nadeem Vawda3c01d162011-08-01 23:48:26 +020090 none - Disable all special resources (this is the default).
91
Guido van Rossum315aa362003-03-11 14:46:48 +000092 audio - Tests that use the audio device. (There are known
93 cases of broken audio drivers that can crash Python or
94 even the Linux kernel.)
95
Andrew M. Kuchling2158df02001-10-22 15:26:09 +000096 curses - Tests that use curses and will modify the terminal's
97 state and output modes.
Tim Peters1633a2e2001-10-30 05:56:40 +000098
Guido van Rossum9e9d4f82002-06-07 15:17:03 +000099 largefile - It is okay to run some test that may create huge
100 files. These tests can take a long time and may
101 consume >2GB of disk space temporarily.
Barry Warsaw08fca522001-08-20 22:33:46 +0000102
Guido van Rossum9e9d4f82002-06-07 15:17:03 +0000103 network - It is okay to run tests that use external network
104 resource, e.g. testing SSL support for sockets.
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +0000105
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000106 decimal - Test the decimal module against a large suite that
107 verifies compliance with standards.
108
Antoine Pitrou5bc4fa72010-10-14 15:34:31 +0000109 cpu - Used for certain CPU-heavy tests.
Jeremy Hylton4336eda2004-08-07 19:25:33 +0000110
Tim Peterseba28be2005-03-28 01:08:02 +0000111 subprocess Run all tests for the subprocess module.
Peter Astrandf7f1bb72005-03-03 20:47:37 +0000112
Hye-Shik Changaaa2f1d2005-12-10 17:44:27 +0000113 urlfetch - It is okay to download files required on testing.
114
Guilherme Polo9de29af2009-01-28 20:40:48 +0000115 gui - Run tests that require a running GUI.
116
Fred Drake4dd0f7e2002-11-26 21:44:56 +0000117To enable all resources except one, use '-uall,-<resource>'. For
Georg Brandl1158a332009-06-04 09:30:30 +0000118example, to run all the tests except for the gui tests, give the
119option '-uall,-gui'.
Guido van Rossum152494a1996-12-20 03:12:20 +0000120"""
121
Nick Coghlanbe7e49f2012-07-20 23:40:09 +1000122# We import importlib *ASAP* in order to test #15386
123import importlib
124
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800125import argparse
Brett Cannon45071902010-06-14 22:22:54 +0000126import builtins
Victor Stinner024e37a2011-03-31 01:31:06 +0200127import faulthandler
Victor Stinner8313d6a2011-06-29 15:22:26 +0200128import io
Antoine Pitrou88909542009-06-29 13:54:42 +0000129import json
Brett Cannon49e835b2013-04-01 14:11:37 -0400130import locale
Victor Stinner8313d6a2011-06-29 15:22:26 +0200131import logging
Christian Heimesb186d002008-03-18 15:15:01 +0000132import os
Victor Stinner8313d6a2011-06-29 15:22:26 +0200133import platform
Skip Montanaroab1c7912000-06-30 16:39:27 +0000134import random
Thomas Wouters9ada3d62006-04-21 09:47:09 +0000135import re
Éric Araujoff913062011-11-29 16:45:07 +0100136import shutil
Victor Stinnercb41cda2011-07-13 23:47:21 +0200137import signal
Christian Heimesb186d002008-03-18 15:15:01 +0000138import sys
Florent Xiclunada7bfd52010-03-06 11:43:55 +0000139import sysconfig
Victor Stinner8313d6a2011-06-29 15:22:26 +0200140import tempfile
141import time
142import traceback
143import unittest
144import warnings
145from inspect import isabstract
Ezio Melotti184bdfb2010-02-18 09:37:05 +0000146
Antoine Pitrouc081c0c2011-07-15 22:12:24 +0200147try:
148 import threading
Brett Cannon260fbe82013-07-04 18:16:15 -0400149except ImportError:
Antoine Pitrouc081c0c2011-07-15 22:12:24 +0200150 threading = None
151try:
Richard Oudkerk84ed9a62013-08-14 15:35:41 +0100152 import _multiprocessing, multiprocessing.process
Brett Cannon260fbe82013-07-04 18:16:15 -0400153except ImportError:
Antoine Pitrouc081c0c2011-07-15 22:12:24 +0200154 multiprocessing = None
155
Florent Xicluna64fb18e2010-03-06 14:43:34 +0000156
Ezio Melotti184bdfb2010-02-18 09:37:05 +0000157# Some times __path__ and __file__ are not absolute (e.g. while running from
158# Lib/) and, if we change the CWD to run the tests in a temporary dir, some
159# imports might fail. This affects only the modules imported before os.chdir().
160# These modules are searched first in sys.path[0] (so '' -- the CWD) and if
161# they are found in the CWD their __file__ and __path__ will be relative (this
162# happens before the chdir). All the modules imported after the chdir, are
163# not found in the CWD, and since the other paths in sys.path[1:] are absolute
164# (site.py absolutize them), the __file__ and __path__ will be absolute too.
165# Therefore it is necessary to absolutize manually the __file__ and __path__ of
166# the packages to prevent later imports to fail when the CWD is different.
167for module in sys.modules.values():
168 if hasattr(module, '__path__'):
169 module.__path__ = [os.path.abspath(path) for path in module.__path__]
170 if hasattr(module, '__file__'):
171 module.__file__ = os.path.abspath(module.__file__)
172
Guido van Rossumdc15c272002-08-12 21:55:51 +0000173
Guido van Rossumbb484652002-12-02 09:56:21 +0000174# MacOSX (a.k.a. Darwin) has a default stack size that is too small
175# for deeply recursive regular expressions. We see this as crashes in
176# the Python test suite when running test_re.py and test_sre.py. The
177# fix is to set the stack limit to 2048.
178# This approach may also be useful for other Unixy platforms that
179# suffer from small default stack limits.
180if sys.platform == 'darwin':
181 try:
182 import resource
Brett Cannon260fbe82013-07-04 18:16:15 -0400183 except ImportError:
Guido van Rossumbb484652002-12-02 09:56:21 +0000184 pass
185 else:
186 soft, hard = resource.getrlimit(resource.RLIMIT_STACK)
187 newsoft = min(hard, max(soft, 1024*2048))
188 resource.setrlimit(resource.RLIMIT_STACK, (newsoft, hard))
189
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000190# Test result constants.
191PASSED = 1
192FAILED = 0
193ENV_CHANGED = -1
194SKIPPED = -2
195RESOURCE_DENIED = -3
196INTERRUPTED = -4
Victor Stinner4b739882011-03-31 18:02:36 +0200197CHILD_ERROR = -5 # error in a child process
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000198
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000199from test import support
Fred Drake3a15dac2002-04-11 16:39:16 +0000200
Georg Brandl1158a332009-06-04 09:30:30 +0000201RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network',
Antoine Pitrou5bc4fa72010-10-14 15:34:31 +0000202 'decimal', 'cpu', 'subprocess', 'urlfetch', 'gui')
Fred Drake3a15dac2002-04-11 16:39:16 +0000203
Chris Jerdonek517e9252013-02-27 09:02:53 -0800204# When tests are run from the Python build directory, it is best practice
205# to keep the test files in a subfolder. This eases the cleanup of leftover
206# files using the "make distclean" command.
207if sysconfig.is_python_build():
208 TEMPDIR = os.path.join(sysconfig.get_config_var('srcdir'), 'build')
209else:
210 TEMPDIR = tempfile.gettempdir()
211TEMPDIR = os.path.abspath(TEMPDIR)
Fred Drake3a15dac2002-04-11 16:39:16 +0000212
Chris Jerdonek15738422013-01-07 17:07:32 -0800213class _ArgParser(argparse.ArgumentParser):
214
215 def error(self, message):
216 super().error(message + "\nPass -h or --help for complete help.")
217
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800218def _create_parser():
219 # Set prog to prevent the uninformative "__main__.py" from displaying in
220 # error messages when using "python -m test ...".
Chris Jerdonek15738422013-01-07 17:07:32 -0800221 parser = _ArgParser(prog='regrtest.py',
222 usage=USAGE,
223 description=DESCRIPTION,
224 epilog=EPILOG,
225 add_help=False,
226 formatter_class=argparse.RawDescriptionHelpFormatter)
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800227
228 # Arguments with this clause added to its help are described further in
229 # the epilog's "Additional option details" section.
230 more_details = ' See the section at bottom for more details.'
231
232 group = parser.add_argument_group('General options')
233 # We add help explicitly to control what argument group it renders under.
234 group.add_argument('-h', '--help', action='help',
235 help='show this help message and exit')
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300236 group.add_argument('--timeout', metavar='TIMEOUT', type=float,
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800237 help='dump the traceback and exit if a test takes '
238 'more than TIMEOUT seconds; disabled if TIMEOUT '
239 'is negative or equals to zero')
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300240 group.add_argument('--wait', action='store_true',
241 help='wait for user input, e.g., allow a debugger '
242 'to be attached')
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800243 group.add_argument('--slaveargs', metavar='ARGS')
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300244 group.add_argument('-S', '--start', metavar='START',
245 help='the name of the test at which to start.' +
246 more_details)
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800247
248 group = parser.add_argument_group('Verbosity')
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300249 group.add_argument('-v', '--verbose', action='count',
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800250 help='run tests in verbose mode with output to stdout')
251 group.add_argument('-w', '--verbose2', action='store_true',
252 help='re-run failed tests in verbose mode')
253 group.add_argument('-W', '--verbose3', action='store_true',
254 help='display test output on failure')
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800255 group.add_argument('-q', '--quiet', action='store_true',
256 help='no output unless one or more tests fail')
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300257 group.add_argument('-o', '--slow', action='store_true', dest='print_slow',
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800258 help='print the slowest 10 tests')
259 group.add_argument('--header', action='store_true',
260 help='print header with interpreter info')
261
262 group = parser.add_argument_group('Selecting tests')
263 group.add_argument('-r', '--randomize', action='store_true',
264 help='randomize test execution order.' + more_details)
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300265 group.add_argument('--randseed', metavar='SEED',
266 dest='random_seed', type=int,
267 help='pass a random seed to reproduce a previous '
268 'random run')
269 group.add_argument('-f', '--fromfile', metavar='FILE',
270 help='read names of tests to run from a file.' +
271 more_details)
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800272 group.add_argument('-x', '--exclude', action='store_true',
273 help='arguments are tests to *exclude*')
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300274 group.add_argument('-s', '--single', action='store_true',
275 help='single step through a set of tests.' +
276 more_details)
277 group.add_argument('-m', '--match', metavar='PAT',
278 dest='match_tests',
279 help='match test cases and methods with glob pattern PAT')
280 group.add_argument('-G', '--failfast', action='store_true',
281 help='fail as soon as a test fails (only with -v or -W)')
282 group.add_argument('-u', '--use', metavar='RES1,RES2,...',
283 action='append', type=resources_list,
284 help='specify which special resource intensive tests '
285 'to run.' + more_details)
286 group.add_argument('-M', '--memlimit', metavar='LIMIT',
287 help='run very large memory-consuming tests.' +
288 more_details)
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800289 group.add_argument('--testdir', metavar='DIR',
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300290 type=relative_filename,
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800291 help='execute test files in the specified directory '
292 '(instead of the Python stdlib test suite)')
293
294 group = parser.add_argument_group('Special runs')
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300295 group.add_argument('-l', '--findleaks', action='store_true',
296 help='if GC is available detect tests that leak memory')
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800297 group.add_argument('-L', '--runleaks', action='store_true',
298 help='run the leaks(1) command just before exit.' +
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300299 more_details)
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800300 group.add_argument('-R', '--huntrleaks', metavar='RUNCOUNTS',
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300301 type=huntrleaks,
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800302 help='search for reference leaks (needs debug build, '
303 'very slow).' + more_details)
304 group.add_argument('-j', '--multiprocess', metavar='PROCESSES',
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300305 dest='use_mp', type=int,
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800306 help='run PROCESSES processes at once')
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300307 group.add_argument('-T', '--coverage', action='store_true',
308 dest='trace',
309 help='turn on code coverage tracing using the trace '
310 'module')
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800311 group.add_argument('-D', '--coverdir', metavar='DIR',
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300312 type=relative_filename,
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800313 help='directory where coverage files are put')
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300314 group.add_argument('-N', '--nocoverdir',
315 action='store_const', const=None, dest='coverdir',
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800316 help='put coverage files alongside modules')
317 group.add_argument('-t', '--threshold', metavar='THRESHOLD',
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300318 type=int,
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800319 help='call gc.set_threshold(THRESHOLD)')
320 group.add_argument('-n', '--nowindows', action='store_true',
321 help='suppress error message boxes on Windows')
322 group.add_argument('-F', '--forever', action='store_true',
323 help='run the specified tests in a loop, until an '
324 'error happens')
325
326 parser.add_argument('args', nargs=argparse.REMAINDER,
327 help=argparse.SUPPRESS)
328
329 return parser
330
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300331def relative_filename(string):
332 # CWD is replaced with a temporary dir before calling main(), so we
333 # join it with the saved CWD so it ends up where the user expects.
334 return os.path.join(support.SAVEDCWD, string)
Chris Jerdonek15738422013-01-07 17:07:32 -0800335
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300336def huntrleaks(string):
337 args = string.split(':')
338 if len(args) not in (2, 3):
339 raise argparse.ArgumentTypeError(
340 'needs 2 or 3 colon-separated arguments')
341 nwarmup = int(args[0]) if args[0] else 5
342 ntracked = int(args[1]) if args[1] else 4
343 fname = args[2] if len(args) > 2 and args[2] else 'reflog.txt'
344 return nwarmup, ntracked, fname
345
346def resources_list(string):
347 u = [x.lower() for x in string.split(',')]
348 for r in u:
349 if r == 'all' or r == 'none':
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800350 continue
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300351 if r[0] == '-':
352 r = r[1:]
353 if r not in RESOURCE_NAMES:
354 raise argparse.ArgumentTypeError('invalid resource: ' + r)
355 return u
Barry Warsaw08fca522001-08-20 22:33:46 +0000356
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300357def _parse_args(args, **kwargs):
358 # Defaults
359 ns = argparse.Namespace(testdir=None, verbose=0, quiet=False,
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000360 exclude=False, single=False, randomize=False, fromfile=None,
Walter Dörwaldaee4da62004-11-12 18:51:27 +0000361 findleaks=False, use_resources=None, trace=False, coverdir='coverage',
Collin Winterfd12f492009-03-29 04:05:05 +0000362 runleaks=False, huntrleaks=False, verbose2=False, print_slow=False,
Antoine Pitrou3c4402f2011-01-03 20:38:52 +0000363 random_seed=None, use_mp=None, verbose3=False, forever=False,
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300364 header=False, failfast=False, match_tests=None)
365 for k, v in kwargs.items():
366 if not hasattr(ns, k):
367 raise TypeError('%r is an invalid keyword argument '
368 'for this function' % k)
369 setattr(ns, k, v)
370 if ns.use_resources is None:
371 ns.use_resources = []
372
373 parser = _create_parser()
374 parser.parse_args(args=args, namespace=ns)
375
376 if ns.single and ns.fromfile:
377 parser.error("-s and -f don't go together!")
378 if ns.use_mp and ns.trace:
379 parser.error("-T and -j don't go together!")
380 if ns.use_mp and ns.findleaks:
381 parser.error("-l and -j don't go together!")
382 if ns.use_mp and ns.memlimit:
383 parser.error("-M and -j don't go together!")
384 if ns.failfast and not (ns.verbose or ns.verbose3):
385 parser.error("-G/--failfast needs either -v or -W")
386
387 if ns.quiet:
388 ns.verbose = 0
389 if ns.timeout is not None:
390 if hasattr(faulthandler, 'dump_traceback_later'):
391 if ns.timeout <= 0:
392 ns.timeout = None
393 else:
394 print("Warning: The timeout option requires "
395 "faulthandler.dump_traceback_later")
396 ns.timeout = None
397 if ns.use_mp is not None:
398 if ns.use_mp <= 0:
399 # Use all cores + extras for tests that like to sleep
400 ns.use_mp = 2 + (os.cpu_count() or 1)
401 if ns.use_mp == 1:
402 ns.use_mp = None
403 if ns.use:
404 for a in ns.use:
405 for r in a:
406 if r == 'all':
407 ns.use_resources[:] = RESOURCE_NAMES
408 continue
409 if r == 'none':
410 del ns.use_resources[:]
411 continue
412 remove = False
413 if r[0] == '-':
414 remove = True
415 r = r[1:]
416 if remove:
417 if r in ns.use_resources:
418 ns.use_resources.remove(r)
419 elif r not in ns.use_resources:
420 ns.use_resources.append(r)
421 if ns.random_seed is not None:
422 ns.randomize = True
423
424 return ns
425
426
Eli Bendersky7f5c22c2013-09-02 08:57:21 -0700427def run_test_in_subprocess(testname, ns):
428 """Run the given test in a subprocess with --slaveargs.
429
430 ns is the option Namespace parsed from command-line arguments. regrtest
431 is invoked in a subprocess with the --slaveargs argument; when the
432 subprocess exits, its return code, stdout and stderr are returned as a
433 3-tuple.
434 """
435 from subprocess import Popen, PIPE
436 base_cmd = ([sys.executable] + support.args_from_interpreter_flags() +
437 ['-X', 'faulthandler', '-m', 'test.regrtest'])
438
439 slaveargs = (
440 (testname, ns.verbose, ns.quiet),
441 dict(huntrleaks=ns.huntrleaks,
442 use_resources=ns.use_resources,
Eli Benderskye8de2962013-09-02 17:01:10 -0700443 output_on_failure=ns.verbose3,
Eli Bendersky7f5c22c2013-09-02 08:57:21 -0700444 timeout=ns.timeout, failfast=ns.failfast,
445 match_tests=ns.match_tests))
446 # Running the child from the same working directory as regrtest's original
447 # invocation ensures that TEMPDIR for the child is the same when
448 # sysconfig.is_python_build() is true. See issue 15300.
449 popen = Popen(base_cmd + ['--slaveargs', json.dumps(slaveargs)],
450 stdout=PIPE, stderr=PIPE,
451 universal_newlines=True,
452 close_fds=(os.name != 'nt'),
453 cwd=support.SAVEDCWD)
454 stdout, stderr = popen.communicate()
455 retcode = popen.wait()
456 return retcode, stdout, stderr
457
458
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300459def main(tests=None, **kwargs):
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000460 """Execute a test suite.
461
Thomas Wouters7e474022000-07-16 12:04:32 +0000462 This also parses command-line options and modifies its behavior
Fred Drake004d5e62000-10-23 17:22:08 +0000463 accordingly.
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000464
465 tests -- a list of strings containing test names (optional)
466 testdir -- the directory in which to look for tests (optional)
467
468 Users other than the Python test suite will certainly want to
469 specify testdir; if it's omitted, the directory containing the
Fred Drake004d5e62000-10-23 17:22:08 +0000470 Python test suite is searched for.
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000471
472 If the tests argument is omitted, the tests listed on the
473 command-line will be used. If that's empty, too, then all *.py
474 files beginning with test_ will be used.
Skip Montanaroab1c7912000-06-30 16:39:27 +0000475
Antoine Pitrou88909542009-06-29 13:54:42 +0000476 The other default arguments (verbose, quiet, exclude,
Collin Winterfd12f492009-03-29 04:05:05 +0000477 single, randomize, findleaks, use_resources, trace, coverdir,
478 print_slow, and random_seed) allow programmers calling main()
479 directly to set the values that would normally be set by flags
480 on the command line.
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000481 """
Victor Stinnercb41cda2011-07-13 23:47:21 +0200482 # Display the Python traceback on fatal errors (e.g. segfault)
Victor Stinner3c18f252011-05-22 15:27:14 +0200483 faulthandler.enable(all_threads=True)
484
Victor Stinnercb41cda2011-07-13 23:47:21 +0200485 # Display the Python traceback on SIGALRM or SIGUSR1 signal
486 signals = []
487 if hasattr(signal, 'SIGALRM'):
488 signals.append(signal.SIGALRM)
489 if hasattr(signal, 'SIGUSR1'):
490 signals.append(signal.SIGUSR1)
491 for signum in signals:
492 faulthandler.register(signum, chain=True)
493
Victor Stinner1802d3f2010-05-19 17:11:19 +0000494 replace_stdout()
495
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000496 support.record_original_stdout(sys.stdout)
Chris Jerdonekd6c18dc2012-12-27 18:53:12 -0800497
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300498 ns = _parse_args(sys.argv[1:], **kwargs)
Barry Warsaw08fca522001-08-20 22:33:46 +0000499
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300500 if ns.huntrleaks:
501 # Avoid false positives due to various caches
502 # filling slowly with random data:
503 warm_caches()
504 if ns.memlimit is not None:
505 support.set_memlimit(ns.memlimit)
506 if ns.threshold is not None:
507 import gc
508 gc.set_threshold(ns.threshold)
509 if ns.nowindows:
510 import msvcrt
511 msvcrt.SetErrorMode(msvcrt.SEM_FAILCRITICALERRORS|
512 msvcrt.SEM_NOALIGNMENTFAULTEXCEPT|
513 msvcrt.SEM_NOGPFAULTERRORBOX|
514 msvcrt.SEM_NOOPENFILEERRORBOX)
515 try:
516 msvcrt.CrtSetReportMode
517 except AttributeError:
518 # release build
519 pass
R. David Murray35768ad2009-11-15 00:23:21 +0000520 else:
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300521 for m in [msvcrt.CRT_WARN, msvcrt.CRT_ERROR, msvcrt.CRT_ASSERT]:
522 msvcrt.CrtSetReportMode(m, msvcrt.CRTDBG_MODE_FILE)
523 msvcrt.CrtSetReportFile(m, msvcrt.CRTDBG_FILE_STDERR)
524 if ns.wait:
525 input("Press any key to continue...")
526
527 if ns.slaveargs is not None:
528 args, kwargs = json.loads(ns.slaveargs)
Andrew Svetlov8913a6c2013-09-01 07:58:41 +0300529 if kwargs.get('huntrleaks'):
530 unittest.BaseTestSuite._cleanup = False
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300531 try:
532 result = runtest(*args, **kwargs)
533 except KeyboardInterrupt:
534 result = INTERRUPTED, ''
535 except BaseException as e:
536 traceback.print_exc()
537 result = CHILD_ERROR, str(e)
538 sys.stdout.flush()
539 print() # Force a newline (just in case)
540 print(json.dumps(result))
541 sys.exit(0)
Barry Warsaw08fca522001-08-20 22:33:46 +0000542
Guido van Rossum152494a1996-12-20 03:12:20 +0000543 good = []
544 bad = []
545 skipped = []
Fred Drake9a0db072003-02-03 15:19:30 +0000546 resource_denieds = []
Nick Coghlan6ead5522009-10-18 13:19:33 +0000547 environment_changed = []
Florent Xiclunad6995eb2010-03-30 19:43:09 +0000548 interrupted = False
Barry Warsawe11e3de1999-01-28 19:51:51 +0000549
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300550 if ns.findleaks:
Barry Warsawa873b032000-08-03 15:50:37 +0000551 try:
552 import gc
Brett Cannon260fbe82013-07-04 18:16:15 -0400553 except ImportError:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000554 print('No GC available, disabling findleaks.')
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300555 ns.findleaks = False
Barry Warsawa873b032000-08-03 15:50:37 +0000556 else:
Neil Schemenauer8a00abc2000-10-13 01:32:42 +0000557 # Uncomment the line below to report garbage that is not
558 # freeable by reference counting alone. By default only
559 # garbage that is not collectable by the GC is reported.
560 #gc.set_debug(gc.DEBUG_SAVEALL)
Neil Schemenauerd569f232000-09-22 15:29:28 +0000561 found_garbage = []
Barry Warsawa873b032000-08-03 15:50:37 +0000562
Andrew Svetlov8913a6c2013-09-01 07:58:41 +0300563 if ns.huntrleaks:
564 unittest.BaseTestSuite._cleanup = False
565
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300566 if ns.single:
Florent Xiclunaec882212010-08-09 16:56:43 +0000567 filename = os.path.join(TEMPDIR, 'pynexttest')
Barry Warsawe11e3de1999-01-28 19:51:51 +0000568 try:
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300569 with open(filename, 'r') as fp:
570 next_test = fp.read().strip()
571 tests = [next_test]
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200572 except OSError:
Barry Warsawe11e3de1999-01-28 19:51:51 +0000573 pass
Tim Petersc5000df2002-06-02 21:42:01 +0000574
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300575 if ns.fromfile:
Tim Petersc5000df2002-06-02 21:42:01 +0000576 tests = []
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300577 with open(os.path.join(support.SAVEDCWD, ns.fromfile)) as fp:
578 count_pat = re.compile(r'\[\s*\d+/\s*\d+\]')
579 for line in fp:
580 line = count_pat.sub('', line)
581 guts = line.split() # assuming no test has whitespace in its name
582 if guts and not guts[0].startswith('#'):
583 tests.extend(guts)
Tim Petersc5000df2002-06-02 21:42:01 +0000584
585 # Strip .py extensions.
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300586 removepy(ns.args)
Florent Xiclunada7bfd52010-03-06 11:43:55 +0000587 removepy(tests)
Tim Petersc5000df2002-06-02 21:42:01 +0000588
Guido van Rossum6c74fea1998-08-25 12:29:08 +0000589 stdtests = STDTESTS[:]
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000590 nottests = NOTTESTS.copy()
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300591 if ns.exclude:
592 for arg in ns.args:
Guido van Rossum6c74fea1998-08-25 12:29:08 +0000593 if arg in stdtests:
594 stdtests.remove(arg)
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000595 nottests.add(arg)
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300596 ns.args = []
Florent Xicluna0e62a142010-03-06 17:34:48 +0000597
598 # For a partial run, we do not need to clutter the output.
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300599 if ns.verbose or ns.header or not (ns.quiet or ns.single or tests or ns.args):
Florent Xicluna0e62a142010-03-06 17:34:48 +0000600 # Print basic platform information
601 print("==", platform.python_implementation(), *sys.version.split())
Florent Xiclunaec882212010-08-09 16:56:43 +0000602 print("== ", platform.platform(aliased=True),
603 "%s-endian" % sys.byteorder)
Christian Heimes985ecdc2013-11-20 11:46:18 +0100604 print("== ", "hash algorithm:", sys.hash_info.algorithm,
605 "64bit" if sys.maxsize > 2**32 else "32bit")
Florent Xicluna0e62a142010-03-06 17:34:48 +0000606 print("== ", os.getcwd())
Antoine Pitrou3c4402f2011-01-03 20:38:52 +0000607 print("Testing with flags:", sys.flags)
Florent Xicluna0e62a142010-03-06 17:34:48 +0000608
R David Murrayb588f8d2011-03-24 14:42:58 -0400609 # if testdir is set, then we are not running the python tests suite, so
610 # don't add default tests to be executed or skipped (pass empty values)
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300611 if ns.testdir:
612 alltests = findtests(ns.testdir, list(), set())
R David Murrayb588f8d2011-03-24 14:42:58 -0400613 else:
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300614 alltests = findtests(ns.testdir, stdtests, nottests)
R David Murrayb588f8d2011-03-24 14:42:58 -0400615
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300616 selected = tests or ns.args or alltests
617 if ns.single:
Florent Xiclunad6995eb2010-03-30 19:43:09 +0000618 selected = selected[:1]
R. David Murrayef1992b2009-12-16 15:19:27 +0000619 try:
Florent Xiclunad6995eb2010-03-30 19:43:09 +0000620 next_single_test = alltests[alltests.index(selected[0])+1]
R. David Murrayef1992b2009-12-16 15:19:27 +0000621 except IndexError:
622 next_single_test = None
R David Murrayc3bf78a2012-10-27 17:07:05 -0400623 # Remove all the selected tests that precede start if it's set.
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300624 if ns.start:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000625 try:
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300626 del selected[:selected.index(ns.start)]
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000627 except ValueError:
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300628 print("Couldn't find starting test (%s), using all tests" % ns.start)
629 if ns.randomize:
630 if ns.random_seed is None:
631 ns.random_seed = random.randrange(10000000)
632 random.seed(ns.random_seed)
633 print("Using random seed", ns.random_seed)
Florent Xiclunad6995eb2010-03-30 19:43:09 +0000634 random.shuffle(selected)
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300635 if ns.trace:
Georg Brandl33c28812009-04-01 23:07:29 +0000636 import trace, tempfile
Vinay Sajip7ded1f02012-05-26 03:45:29 +0100637 tracer = trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix,
Georg Brandl33c28812009-04-01 23:07:29 +0000638 tempfile.gettempdir()],
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000639 trace=False, count=True)
R. David Murray7dc72cc2009-11-14 16:13:02 +0000640
Christian Heimesb186d002008-03-18 15:15:01 +0000641 test_times = []
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300642 support.verbose = ns.verbose # Tell tests to be moderately quiet
643 support.use_resources = ns.use_resources
Guido van Rossum5796d262000-04-21 21:35:06 +0000644 save_modules = sys.modules.keys()
Antoine Pitrou88909542009-06-29 13:54:42 +0000645
646 def accumulate_result(test, result):
647 ok, test_time = result
648 test_times.append((test_time, test))
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000649 if ok == PASSED:
Antoine Pitrou88909542009-06-29 13:54:42 +0000650 good.append(test)
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000651 elif ok == FAILED:
Antoine Pitrou88909542009-06-29 13:54:42 +0000652 bad.append(test)
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000653 elif ok == ENV_CHANGED:
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000654 environment_changed.append(test)
655 elif ok == SKIPPED:
Antoine Pitrou88909542009-06-29 13:54:42 +0000656 skipped.append(test)
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000657 elif ok == RESOURCE_DENIED:
658 skipped.append(test)
659 resource_denieds.append(test)
Antoine Pitrou88909542009-06-29 13:54:42 +0000660
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300661 if ns.forever:
Florent Xiclunad6995eb2010-03-30 19:43:09 +0000662 def test_forever(tests=list(selected)):
R. David Murray7dc72cc2009-11-14 16:13:02 +0000663 while True:
664 for test in tests:
665 yield test
666 if bad:
667 return
668 tests = test_forever()
Georg Brandle8e02e32010-08-03 07:56:50 +0000669 test_count = ''
670 test_count_width = 3
R. David Murray7dc72cc2009-11-14 16:13:02 +0000671 else:
Florent Xiclunad6995eb2010-03-30 19:43:09 +0000672 tests = iter(selected)
Georg Brandle8e02e32010-08-03 07:56:50 +0000673 test_count = '/{}'.format(len(selected))
674 test_count_width = len(test_count) - 1
R. David Murray7dc72cc2009-11-14 16:13:02 +0000675
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300676 if ns.use_mp:
Victor Stinner45df8202010-04-28 22:31:17 +0000677 try:
678 from threading import Thread
Brett Cannon260fbe82013-07-04 18:16:15 -0400679 except ImportError:
Victor Stinner45df8202010-04-28 22:31:17 +0000680 print("Multiprocess option requires thread support")
681 sys.exit(2)
Georg Brandl1b37e872010-03-14 10:45:50 +0000682 from queue import Queue
Antoine Pitrouf9d0b122012-12-09 14:28:26 +0100683 debug_output_pat = re.compile(r"\[\d+ refs, \d+ blocks\]$")
Antoine Pitrou88909542009-06-29 13:54:42 +0000684 output = Queue()
Antoine Pitrou09f2e6f2012-07-26 00:45:19 +0200685 pending = MultiprocessTests(tests)
Antoine Pitrou88909542009-06-29 13:54:42 +0000686 def work():
687 # A worker thread.
Neal Norwitz14ca3272006-02-28 18:05:43 +0000688 try:
Antoine Pitrou88909542009-06-29 13:54:42 +0000689 while True:
690 try:
Antoine Pitrou09f2e6f2012-07-26 00:45:19 +0200691 test = next(pending)
R. David Murray7dc72cc2009-11-14 16:13:02 +0000692 except StopIteration:
R. David Murray27144602009-10-19 15:26:16 +0000693 output.put((None, None, None, None))
Antoine Pitrou88909542009-06-29 13:54:42 +0000694 return
Eli Bendersky7f5c22c2013-09-02 08:57:21 -0700695 retcode, stdout, stderr = run_test_in_subprocess(test, ns)
R. David Murray27144602009-10-19 15:26:16 +0000696 # Strip last refcount output line if it exists, since it
697 # comes from the shutdown of the interpreter in the subcommand.
698 stderr = debug_output_pat.sub("", stderr)
699 stdout, _, result = stdout.strip().rpartition("\n")
Victor Stinner4b739882011-03-31 18:02:36 +0200700 if retcode != 0:
701 result = (CHILD_ERROR, "Exit code %s" % retcode)
702 output.put((test, stdout.rstrip(), stderr.rstrip(), result))
703 return
R. David Murray7dc72cc2009-11-14 16:13:02 +0000704 if not result:
705 output.put((None, None, None, None))
706 return
Antoine Pitrou88909542009-06-29 13:54:42 +0000707 result = json.loads(result)
R. David Murray27144602009-10-19 15:26:16 +0000708 output.put((test, stdout.rstrip(), stderr.rstrip(), result))
Antoine Pitrou88909542009-06-29 13:54:42 +0000709 except BaseException:
R. David Murray27144602009-10-19 15:26:16 +0000710 output.put((None, None, None, None))
Neal Norwitz14ca3272006-02-28 18:05:43 +0000711 raise
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300712 workers = [Thread(target=work) for i in range(ns.use_mp)]
Antoine Pitrou88909542009-06-29 13:54:42 +0000713 for worker in workers:
714 worker.start()
715 finished = 0
Georg Brandldee7b852010-08-02 18:59:52 +0000716 test_index = 1
R. David Murray7dc72cc2009-11-14 16:13:02 +0000717 try:
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300718 while finished < ns.use_mp:
R. David Murray7dc72cc2009-11-14 16:13:02 +0000719 test, stdout, stderr, result = output.get()
720 if test is None:
721 finished += 1
722 continue
Victor Stinnera2a895c2011-05-23 23:14:05 +0200723 accumulate_result(test, result)
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300724 if not ns.quiet:
Ezio Melotti84f75c62011-05-24 01:00:10 +0300725 fmt = "[{1:{0}}{2}/{3}] {4}" if bad else "[{1:{0}}{2}] {4}"
726 print(fmt.format(
Victor Stinnera2a895c2011-05-23 23:14:05 +0200727 test_count_width, test_index, test_count,
728 len(bad), test))
R. David Murray7dc72cc2009-11-14 16:13:02 +0000729 if stdout:
730 print(stdout)
731 if stderr:
732 print(stderr, file=sys.stderr)
Antoine Pitrou82372582012-06-27 17:41:07 +0200733 sys.stdout.flush()
734 sys.stderr.flush()
R. David Murray7dc72cc2009-11-14 16:13:02 +0000735 if result[0] == INTERRUPTED:
Victor Stinner29650112012-08-08 22:37:26 +0200736 raise KeyboardInterrupt
Victor Stinner4b739882011-03-31 18:02:36 +0200737 if result[0] == CHILD_ERROR:
Victor Stinner571e8fd2011-05-01 22:57:43 +0200738 raise Exception("Child error on {}: {}".format(test, result[1]))
Georg Brandldee7b852010-08-02 18:59:52 +0000739 test_index += 1
R. David Murray7dc72cc2009-11-14 16:13:02 +0000740 except KeyboardInterrupt:
Florent Xiclunad6995eb2010-03-30 19:43:09 +0000741 interrupted = True
Antoine Pitrou09f2e6f2012-07-26 00:45:19 +0200742 pending.interrupted = True
Antoine Pitrou88909542009-06-29 13:54:42 +0000743 for worker in workers:
744 worker.join()
745 else:
Georg Brandldee7b852010-08-02 18:59:52 +0000746 for test_index, test in enumerate(tests, 1):
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300747 if not ns.quiet:
Ezio Melotti84f75c62011-05-24 01:00:10 +0300748 fmt = "[{1:{0}}{2}/{3}] {4}" if bad else "[{1:{0}}{2}] {4}"
749 print(fmt.format(
Victor Stinnera2a895c2011-05-23 23:14:05 +0200750 test_count_width, test_index, test_count, len(bad), test))
Antoine Pitrou88909542009-06-29 13:54:42 +0000751 sys.stdout.flush()
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300752 if ns.trace:
Antoine Pitrou88909542009-06-29 13:54:42 +0000753 # If we're tracing code coverage, then we don't exit with status
754 # if on a false return value from main.
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300755 tracer.runctx('runtest(test, ns.verbose, ns.quiet, timeout=ns.timeout)',
Antoine Pitrou88909542009-06-29 13:54:42 +0000756 globals=globals(), locals=vars())
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000757 else:
Antoine Pitrou88909542009-06-29 13:54:42 +0000758 try:
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300759 result = runtest(test, ns.verbose, ns.quiet,
Eli Benderskye8de2962013-09-02 17:01:10 -0700760 ns.huntrleaks,
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300761 output_on_failure=ns.verbose3,
762 timeout=ns.timeout, failfast=ns.failfast,
763 match_tests=ns.match_tests)
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000764 accumulate_result(test, result)
Antoine Pitrou88909542009-06-29 13:54:42 +0000765 except KeyboardInterrupt:
Florent Xiclunad6995eb2010-03-30 19:43:09 +0000766 interrupted = True
Antoine Pitrou88909542009-06-29 13:54:42 +0000767 break
768 except:
769 raise
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300770 if ns.findleaks:
Antoine Pitrou88909542009-06-29 13:54:42 +0000771 gc.collect()
772 if gc.garbage:
773 print("Warning: test created", len(gc.garbage), end=' ')
774 print("uncollectable object(s).")
775 # move the uncollectable objects somewhere so we don't see
776 # them again
777 found_garbage.extend(gc.garbage)
778 del gc.garbage[:]
779 # Unload the newly imported modules (best effort finalization)
780 for module in sys.modules.keys():
781 if module not in save_modules and module.startswith("test."):
782 support.unload(module)
Jeremy Hylton7a1ea0e2001-10-17 13:45:28 +0000783
Florent Xiclunad6995eb2010-03-30 19:43:09 +0000784 if interrupted:
785 # print a newline after ^C
786 print()
787 print("Test suite interrupted by signal SIGINT.")
788 omitted = set(selected) - set(good) - set(bad) - set(skipped)
789 print(count(len(omitted), "test"), "omitted:")
790 printlist(omitted)
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300791 if good and not ns.quiet:
Florent Xiclunad6995eb2010-03-30 19:43:09 +0000792 if not bad and not skipped and not interrupted and len(good) > 1:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000793 print("All", end=' ')
794 print(count(len(good), "test"), "OK.")
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300795 if ns.print_slow:
Christian Heimesb186d002008-03-18 15:15:01 +0000796 test_times.sort(reverse=True)
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000797 print("10 slowest tests:")
Christian Heimesb186d002008-03-18 15:15:01 +0000798 for time, test in test_times[:10]:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000799 print("%s: %.1fs" % (test, time))
Guido van Rossum152494a1996-12-20 03:12:20 +0000800 if bad:
Nick Coghlan6ead5522009-10-18 13:19:33 +0000801 bad = sorted(set(bad) - set(environment_changed))
802 if bad:
803 print(count(len(bad), "test"), "failed:")
804 printlist(bad)
Vinay Sajipf9596182012-03-02 01:01:13 +0000805 if environment_changed:
806 print("{} altered the execution environment:".format(
807 count(len(environment_changed), "test")))
808 printlist(environment_changed)
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300809 if skipped and not ns.quiet:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000810 print(count(len(skipped), "test"), "skipped:")
Tim Petersa45da922001-08-12 03:45:50 +0000811 printlist(skipped)
Barry Warsawe11e3de1999-01-28 19:51:51 +0000812
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300813 if ns.verbose2 and bad:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000814 print("Re-running failed tests in verbose mode")
Martin v. Löwis04824ce2006-03-10 21:26:16 +0000815 for test in bad:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000816 print("Re-running test %r in verbose mode" % test)
Tim Peters922dd7d2006-03-10 23:37:10 +0000817 sys.stdout.flush()
Martin v. Löwis04824ce2006-03-10 21:26:16 +0000818 try:
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300819 ns.verbose = True
Eli Benderskye8de2962013-09-02 17:01:10 -0700820 ok = runtest(test, True, ns.quiet, ns.huntrleaks,
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300821 timeout=ns.timeout)
Martin v. Löwis04824ce2006-03-10 21:26:16 +0000822 except KeyboardInterrupt:
823 # print a newline separate from the ^C
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000824 print()
Martin v. Löwis04824ce2006-03-10 21:26:16 +0000825 break
826 except:
827 raise
828
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300829 if ns.single:
R. David Murrayef1992b2009-12-16 15:19:27 +0000830 if next_single_test:
831 with open(filename, 'w') as fp:
832 fp.write(next_single_test + '\n')
Barry Warsawe11e3de1999-01-28 19:51:51 +0000833 else:
834 os.unlink(filename)
835
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300836 if ns.trace:
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000837 r = tracer.results()
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300838 r.write_results(show_missing=True, summary=True, coverdir=ns.coverdir)
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000839
Serhiy Storchaka64f7c4e2013-08-29 12:26:23 +0300840 if ns.runleaks:
Skip Montanaro0179a182004-06-06 15:53:18 +0000841 os.system("leaks %d" % os.getpid())
842
Florent Xiclunad6995eb2010-03-30 19:43:09 +0000843 sys.exit(len(bad) > 0 or interrupted)
Barry Warsaw08fca522001-08-20 22:33:46 +0000844
Guido van Rossum152494a1996-12-20 03:12:20 +0000845
R David Murrayb588f8d2011-03-24 14:42:58 -0400846# small set of tests to determine if we have a basically functioning interpreter
847# (i.e. if any of these fail, then anything else is likely to follow)
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000848STDTESTS = [
Guido van Rossum152494a1996-12-20 03:12:20 +0000849 'test_grammar',
850 'test_opcodes',
Guido van Rossumd8faa362007-04-27 19:54:29 +0000851 'test_dict',
Guido van Rossum152494a1996-12-20 03:12:20 +0000852 'test_builtin',
853 'test_exceptions',
854 'test_types',
Collin Winter7afaa882007-03-08 19:54:43 +0000855 'test_unittest',
856 'test_doctest',
857 'test_doctest2',
Eli Benderskyd18a0472011-07-27 20:21:45 +0300858 'test_support'
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000859]
Guido van Rossum152494a1996-12-20 03:12:20 +0000860
R David Murrayb588f8d2011-03-24 14:42:58 -0400861# set of tests that we don't want to be executed when using regrtest
R David Murray57648302011-03-24 14:57:05 -0400862NOTTESTS = set()
Guido van Rossum152494a1996-12-20 03:12:20 +0000863
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000864def findtests(testdir=None, stdtests=STDTESTS, nottests=NOTTESTS):
Guido van Rossum152494a1996-12-20 03:12:20 +0000865 """Return a list of all applicable test modules."""
Florent Xiclunada7bfd52010-03-06 11:43:55 +0000866 testdir = findtestdir(testdir)
Guido van Rossum152494a1996-12-20 03:12:20 +0000867 names = os.listdir(testdir)
868 tests = []
Florent Xiclunada7bfd52010-03-06 11:43:55 +0000869 others = set(stdtests) | nottests
Guido van Rossum152494a1996-12-20 03:12:20 +0000870 for name in names:
R David Murray661720e2011-03-21 15:14:34 -0400871 mod, ext = os.path.splitext(name)
872 if mod[:5] == "test_" and ext in (".py", "") and mod not in others:
873 tests.append(mod)
Florent Xiclunada7bfd52010-03-06 11:43:55 +0000874 return stdtests + sorted(tests)
Guido van Rossum152494a1996-12-20 03:12:20 +0000875
Antoine Pitrou09f2e6f2012-07-26 00:45:19 +0200876# We do not use a generator so multiple threads can call next().
877class MultiprocessTests(object):
878
879 """A thread-safe iterator over tests for multiprocess mode."""
880
881 def __init__(self, tests):
882 self.interrupted = False
883 self.lock = threading.Lock()
884 self.tests = tests
885
886 def __iter__(self):
887 return self
888
889 def __next__(self):
890 with self.lock:
891 if self.interrupted:
892 raise StopIteration('tests interrupted')
893 return next(self.tests)
894
Victor Stinnerf58087b2010-05-02 17:24:51 +0000895def replace_stdout():
896 """Set stdout encoder error handler to backslashreplace (as stderr error
897 handler) to avoid UnicodeEncodeError when printing a traceback"""
Victor Stinner4b2b43d2011-01-05 03:54:26 +0000898 import atexit
899
Victor Stinnerf58087b2010-05-02 17:24:51 +0000900 stdout = sys.stdout
901 sys.stdout = open(stdout.fileno(), 'w',
902 encoding=stdout.encoding,
Victor Stinner4b2b43d2011-01-05 03:54:26 +0000903 errors="backslashreplace",
Victor Stinnerbe621032011-05-25 02:01:55 +0200904 closefd=False,
905 newline='\n')
Victor Stinner4b2b43d2011-01-05 03:54:26 +0000906
907 def restore_stdout():
908 sys.stdout.close()
909 sys.stdout = stdout
910 atexit.register(restore_stdout)
Victor Stinnerf58087b2010-05-02 17:24:51 +0000911
Antoine Pitrou88909542009-06-29 13:54:42 +0000912def runtest(test, verbose, quiet,
Eli Benderskye8de2962013-09-02 17:01:10 -0700913 huntrleaks=False, use_resources=None,
Antoine Pitrouf83e4ac2011-07-29 23:57:10 +0200914 output_on_failure=False, failfast=False, match_tests=None,
915 timeout=None):
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000916 """Run a single test.
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000917
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000918 test -- the name of the test
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000919 verbose -- if true, print more messages
Trent Mickf29f47b2000-08-11 19:02:59 +0000920 quiet -- if true, don't print 'skipped' messages (probably redundant)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000921 huntrleaks -- run multiple times to test for leaks; requires a debug
922 build; a triple corresponding to -R's three arguments
Eli Benderskye5eebed2013-09-02 16:52:25 -0700923 use_resources -- list of extra resources to use
Victor Stinner8313d6a2011-06-29 15:22:26 +0200924 output_on_failure -- if true, display test output on failure
Victor Stinner0cc8d592011-03-31 18:10:13 +0200925 timeout -- dump the traceback and exit if a test takes more than
926 timeout seconds
Eli Benderskye5eebed2013-09-02 16:52:25 -0700927 failfast, match_tests -- See regrtest command-line flags for these.
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000928
Eli Benderskye5eebed2013-09-02 16:52:25 -0700929 Returns the tuple result, test_time, where result is one of the constants:
Benjamin Petersona0dfa822009-11-13 02:25:08 +0000930 INTERRUPTED KeyboardInterrupt when run under -j
931 RESOURCE_DENIED test skipped because resource denied
932 SKIPPED test skipped for some other reason
933 ENV_CHANGED test failed because it changed the execution environment
934 FAILED test failed
935 PASSED test passed
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000936 """
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000937
Antoine Pitrou88909542009-06-29 13:54:42 +0000938 if use_resources is not None:
939 support.use_resources = use_resources
Victor Stinner30196882011-06-03 12:53:26 +0200940 use_timeout = (timeout is not None)
Victor Stinner7d648a02011-03-31 18:27:50 +0200941 if use_timeout:
Victor Stinner4de701b2013-06-17 20:27:10 +0200942 faulthandler.dump_traceback_later(timeout, exit=True)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000943 try:
Antoine Pitroub9c73e82011-07-29 23:53:38 +0200944 support.match_tests = match_tests
Antoine Pitrou216a3bc2011-07-23 22:33:39 +0200945 if failfast:
946 support.failfast = True
Victor Stinner8313d6a2011-06-29 15:22:26 +0200947 if output_on_failure:
Victor Stinnerea95de72011-06-29 15:34:48 +0200948 support.verbose = True
949
950 # Reuse the same instance to all calls to runtest(). Some
951 # tests keep a reference to sys.stdout or sys.stderr
952 # (eg. test_argparse).
Victor Stinner8313d6a2011-06-29 15:22:26 +0200953 if runtest.stringio is None:
Victor Stinnerfcc2a212011-06-29 20:01:29 +0200954 stream = io.StringIO()
955 runtest.stringio = stream
956 else:
957 stream = runtest.stringio
958 stream.seek(0)
959 stream.truncate()
Victor Stinner8313d6a2011-06-29 15:22:26 +0200960
961 orig_stdout = sys.stdout
Victor Stinnera7c33e52011-06-29 13:00:54 +0200962 orig_stderr = sys.stderr
Victor Stinner8313d6a2011-06-29 15:22:26 +0200963 try:
Victor Stinnerea95de72011-06-29 15:34:48 +0200964 sys.stdout = stream
965 sys.stderr = stream
Victor Stinner8313d6a2011-06-29 15:22:26 +0200966 result = runtest_inner(test, verbose, quiet, huntrleaks,
Eli Benderskye8de2962013-09-02 17:01:10 -0700967 display_failure=False)
Victor Stinner8313d6a2011-06-29 15:22:26 +0200968 if result[0] == FAILED:
Victor Stinnerea95de72011-06-29 15:34:48 +0200969 output = stream.getvalue()
Victor Stinner8313d6a2011-06-29 15:22:26 +0200970 orig_stderr.write(output)
971 orig_stderr.flush()
972 finally:
973 sys.stdout = orig_stdout
974 sys.stderr = orig_stderr
Victor Stinnera7c33e52011-06-29 13:00:54 +0200975 else:
Victor Stinnerea95de72011-06-29 15:34:48 +0200976 support.verbose = verbose # Tell tests to be moderately quiet
Eli Benderskye8de2962013-09-02 17:01:10 -0700977 result = runtest_inner(test, verbose, quiet, huntrleaks,
Victor Stinnera7c33e52011-06-29 13:00:54 +0200978 display_failure=not verbose)
Antoine Pitrou293954d2011-03-23 23:01:49 +0100979 return result
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000980 finally:
Victor Stinner7d648a02011-03-31 18:27:50 +0200981 if use_timeout:
Victor Stinner934676a2013-06-17 20:35:08 +0200982 faulthandler.cancel_dump_traceback_later()
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000983 cleanup_test_droppings(test, verbose)
Victor Stinner8313d6a2011-06-29 15:22:26 +0200984runtest.stringio = None
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000985
Nick Coghlan6ead5522009-10-18 13:19:33 +0000986# Unit tests are supposed to leave the execution environment unchanged
987# once they complete. But sometimes tests have bugs, especially when
988# tests fail, and the changes to environment go on to mess up other
989# tests. This can cause issues with buildbot stability, since tests
990# are run in random order and so problems may appear to come and go.
991# There are a few things we can save and restore to mitigate this, and
992# the following context manager handles this task.
993
994class saved_test_environment:
995 """Save bits of the test environment and restore them at block exit.
996
997 with saved_test_environment(testname, verbose, quiet):
998 #stuff
999
1000 Unless quiet is True, a warning is printed to stderr if any of
1001 the saved items was changed by the test. The attribute 'changed'
1002 is initially False, but is set to True if a change is detected.
1003
1004 If verbose is more than 1, the before and after state of changed
1005 items is also printed.
1006 """
1007
1008 changed = False
1009
1010 def __init__(self, testname, verbose=0, quiet=False):
1011 self.testname = testname
1012 self.verbose = verbose
1013 self.quiet = quiet
1014
1015 # To add things to save and restore, add a name XXX to the resources list
1016 # and add corresponding get_XXX/restore_XXX functions. get_XXX should
1017 # return the value to be saved and compared against a second call to the
1018 # get function when test execution completes. restore_XXX should accept
1019 # the saved value and restore the resource using it. It will be called if
1020 # and only if a change in the value is detected.
1021 #
1022 # Note: XXX will have any '.' replaced with '_' characters when determining
1023 # the corresponding method names.
1024
1025 resources = ('sys.argv', 'cwd', 'sys.stdin', 'sys.stdout', 'sys.stderr',
Brett Cannon29c0e4f2010-03-20 22:22:57 +00001026 'os.environ', 'sys.path', 'sys.path_hooks', '__import__',
Nick Coghlan7bd5dbe2010-12-05 07:17:25 +00001027 'warnings.filters', 'asyncore.socket_map',
Ezio Melotti45763d02011-03-20 15:34:28 +02001028 'logging._handlers', 'logging._handlerList', 'sys.gettrace',
Richard Oudkerk83d7dea2013-08-29 12:51:11 +01001029 'sys.warnoptions',
1030 # multiprocessing.process._cleanup() may release ref
1031 # to a thread, so check processes first.
1032 'multiprocessing.process._dangling', 'threading._dangling',
Éric Araujoec177c12012-06-24 03:27:43 -04001033 'sysconfig._CONFIG_VARS', 'sysconfig._INSTALL_SCHEMES',
Serhiy Storchakaa3a100b2015-03-30 01:28:02 +03001034 'files', 'locale', 'warnings.showwarning',
Éric Araujo28df8de2011-09-19 05:10:45 +02001035 )
Nick Coghlan6ead5522009-10-18 13:19:33 +00001036
1037 def get_sys_argv(self):
1038 return id(sys.argv), sys.argv, sys.argv[:]
1039 def restore_sys_argv(self, saved_argv):
1040 sys.argv = saved_argv[1]
1041 sys.argv[:] = saved_argv[2]
1042
1043 def get_cwd(self):
1044 return os.getcwd()
1045 def restore_cwd(self, saved_cwd):
1046 os.chdir(saved_cwd)
1047
1048 def get_sys_stdout(self):
1049 return sys.stdout
1050 def restore_sys_stdout(self, saved_stdout):
1051 sys.stdout = saved_stdout
1052
1053 def get_sys_stderr(self):
1054 return sys.stderr
1055 def restore_sys_stderr(self, saved_stderr):
1056 sys.stderr = saved_stderr
1057
1058 def get_sys_stdin(self):
1059 return sys.stdin
1060 def restore_sys_stdin(self, saved_stdin):
1061 sys.stdin = saved_stdin
1062
1063 def get_os_environ(self):
1064 return id(os.environ), os.environ, dict(os.environ)
1065 def restore_os_environ(self, saved_environ):
1066 os.environ = saved_environ[1]
1067 os.environ.clear()
1068 os.environ.update(saved_environ[2])
1069
1070 def get_sys_path(self):
1071 return id(sys.path), sys.path, sys.path[:]
1072 def restore_sys_path(self, saved_path):
1073 sys.path = saved_path[1]
1074 sys.path[:] = saved_path[2]
1075
Brett Cannon055470a2010-02-19 15:57:10 +00001076 def get_sys_path_hooks(self):
1077 return id(sys.path_hooks), sys.path_hooks, sys.path_hooks[:]
1078 def restore_sys_path_hooks(self, saved_hooks):
1079 sys.path_hooks = saved_hooks[1]
1080 sys.path_hooks[:] = saved_hooks[2]
1081
Brett Cannon31f59292011-02-21 19:29:56 +00001082 def get_sys_gettrace(self):
1083 return sys.gettrace()
1084 def restore_sys_gettrace(self, trace_fxn):
1085 sys.settrace(trace_fxn)
1086
Brett Cannon055470a2010-02-19 15:57:10 +00001087 def get___import__(self):
Brett Cannon45071902010-06-14 22:22:54 +00001088 return builtins.__import__
Brett Cannon055470a2010-02-19 15:57:10 +00001089 def restore___import__(self, import_):
Brett Cannon45071902010-06-14 22:22:54 +00001090 builtins.__import__ = import_
Brett Cannon055470a2010-02-19 15:57:10 +00001091
Brett Cannon29c0e4f2010-03-20 22:22:57 +00001092 def get_warnings_filters(self):
1093 return id(warnings.filters), warnings.filters, warnings.filters[:]
1094 def restore_warnings_filters(self, saved_filters):
1095 warnings.filters = saved_filters[1]
1096 warnings.filters[:] = saved_filters[2]
1097
Antoine Pitroub14ac8c2010-08-16 00:28:05 +00001098 def get_asyncore_socket_map(self):
1099 asyncore = sys.modules.get('asyncore')
Antoine Pitrouaa879652010-10-29 11:54:38 +00001100 # XXX Making a copy keeps objects alive until __exit__ gets called.
1101 return asyncore and asyncore.socket_map.copy() or {}
Antoine Pitroub14ac8c2010-08-16 00:28:05 +00001102 def restore_asyncore_socket_map(self, saved_map):
1103 asyncore = sys.modules.get('asyncore')
1104 if asyncore is not None:
Antoine Pitrouaa879652010-10-29 11:54:38 +00001105 asyncore.close_all(ignore_all=True)
Antoine Pitroub14ac8c2010-08-16 00:28:05 +00001106 asyncore.socket_map.update(saved_map)
1107
Éric Araujoff913062011-11-29 16:45:07 +01001108 def get_shutil_archive_formats(self):
1109 # we could call get_archives_formats() but that only returns the
1110 # registry keys; we want to check the values too (the functions that
1111 # are registered)
1112 return shutil._ARCHIVE_FORMATS, shutil._ARCHIVE_FORMATS.copy()
1113 def restore_shutil_archive_formats(self, saved):
1114 shutil._ARCHIVE_FORMATS = saved[0]
1115 shutil._ARCHIVE_FORMATS.clear()
1116 shutil._ARCHIVE_FORMATS.update(saved[1])
1117
1118 def get_shutil_unpack_formats(self):
1119 return shutil._UNPACK_FORMATS, shutil._UNPACK_FORMATS.copy()
1120 def restore_shutil_unpack_formats(self, saved):
1121 shutil._UNPACK_FORMATS = saved[0]
1122 shutil._UNPACK_FORMATS.clear()
1123 shutil._UNPACK_FORMATS.update(saved[1])
1124
Nick Coghlan7d819752010-12-05 06:45:03 +00001125 def get_logging__handlers(self):
1126 # _handlers is a WeakValueDictionary
Nick Coghlan7bd5dbe2010-12-05 07:17:25 +00001127 return id(logging._handlers), logging._handlers, logging._handlers.copy()
Nick Coghlan7d819752010-12-05 06:45:03 +00001128 def restore_logging__handlers(self, saved_handlers):
1129 # Can't easily revert the logging state
1130 pass
1131
Nick Coghlan7bd5dbe2010-12-05 07:17:25 +00001132 def get_logging__handlerList(self):
1133 # _handlerList is a list of weakrefs to handlers
1134 return id(logging._handlerList), logging._handlerList, logging._handlerList[:]
1135 def restore_logging__handlerList(self, saved_handlerList):
1136 # Can't easily revert the logging state
1137 pass
1138
Ezio Melotti0123e052011-03-20 15:09:26 +02001139 def get_sys_warnoptions(self):
1140 return id(sys.warnoptions), sys.warnoptions, sys.warnoptions[:]
1141 def restore_sys_warnoptions(self, saved_options):
1142 sys.warnoptions = saved_options[1]
1143 sys.warnoptions[:] = saved_options[2]
1144
Antoine Pitrouc081c0c2011-07-15 22:12:24 +02001145 # Controlling dangling references to Thread objects can make it easier
1146 # to track reference leaks.
1147 def get_threading__dangling(self):
1148 if not threading:
1149 return None
1150 # This copies the weakrefs without making any strong reference
1151 return threading._dangling.copy()
1152 def restore_threading__dangling(self, saved):
1153 if not threading:
1154 return
1155 threading._dangling.clear()
1156 threading._dangling.update(saved)
1157
1158 # Same for Process objects
1159 def get_multiprocessing_process__dangling(self):
1160 if not multiprocessing:
1161 return None
Richard Oudkerk83d7dea2013-08-29 12:51:11 +01001162 # Unjoined process objects can survive after process exits
1163 multiprocessing.process._cleanup()
Antoine Pitrouc081c0c2011-07-15 22:12:24 +02001164 # This copies the weakrefs without making any strong reference
1165 return multiprocessing.process._dangling.copy()
1166 def restore_multiprocessing_process__dangling(self, saved):
1167 if not multiprocessing:
1168 return
1169 multiprocessing.process._dangling.clear()
1170 multiprocessing.process._dangling.update(saved)
1171
Éric Araujo28df8de2011-09-19 05:10:45 +02001172 def get_sysconfig__CONFIG_VARS(self):
1173 # make sure the dict is initialized
1174 sysconfig.get_config_var('prefix')
1175 return (id(sysconfig._CONFIG_VARS), sysconfig._CONFIG_VARS,
1176 dict(sysconfig._CONFIG_VARS))
1177 def restore_sysconfig__CONFIG_VARS(self, saved):
1178 sysconfig._CONFIG_VARS = saved[1]
1179 sysconfig._CONFIG_VARS.clear()
1180 sysconfig._CONFIG_VARS.update(saved[2])
1181
Éric Araujoec177c12012-06-24 03:27:43 -04001182 def get_sysconfig__INSTALL_SCHEMES(self):
1183 return (id(sysconfig._INSTALL_SCHEMES), sysconfig._INSTALL_SCHEMES,
1184 sysconfig._INSTALL_SCHEMES.copy())
1185 def restore_sysconfig__INSTALL_SCHEMES(self, saved):
1186 sysconfig._INSTALL_SCHEMES = saved[1]
1187 sysconfig._INSTALL_SCHEMES.clear()
1188 sysconfig._INSTALL_SCHEMES.update(saved[2])
Éric Araujo28df8de2011-09-19 05:10:45 +02001189
Serhiy Storchakaa3a100b2015-03-30 01:28:02 +03001190 def get_files(self):
1191 return sorted(fn + ('/' if os.path.isdir(fn) else '')
1192 for fn in os.listdir())
1193 def restore_files(self, saved_value):
1194 fn = support.TESTFN
1195 if fn not in saved_value and (fn + '/') not in saved_value:
1196 if os.path.isfile(fn):
1197 support.unlink(fn)
1198 elif os.path.isdir(fn):
1199 support.rmtree(fn)
Éric Araujo28df8de2011-09-19 05:10:45 +02001200
Victor Stinnerd9ccf7f2013-06-17 20:40:05 +02001201 _lc = [getattr(locale, lc) for lc in dir(locale)
Victor Stinner546ccf02013-06-17 21:28:14 +02001202 if lc.startswith('LC_')]
Brett Cannon49e835b2013-04-01 14:11:37 -04001203 def get_locale(self):
1204 pairings = []
1205 for lc in self._lc:
1206 try:
Victor Stinner546ccf02013-06-17 21:28:14 +02001207 pairings.append((lc, locale.setlocale(lc, None)))
Victor Stinnerd9ccf7f2013-06-17 20:40:05 +02001208 except (TypeError, ValueError):
Brett Cannon49e835b2013-04-01 14:11:37 -04001209 continue
1210 return pairings
1211 def restore_locale(self, saved):
1212 for lc, setting in saved:
1213 locale.setlocale(lc, setting)
1214
Brett Cannon6d26eba2013-06-16 15:20:48 -04001215 def get_warnings_showwarning(self):
1216 return warnings.showwarning
1217 def restore_warnings_showwarning(self, fxn):
1218 warnings.showwarning = fxn
1219
Nick Coghlan6ead5522009-10-18 13:19:33 +00001220 def resource_info(self):
1221 for name in self.resources:
1222 method_suffix = name.replace('.', '_')
1223 get_name = 'get_' + method_suffix
1224 restore_name = 'restore_' + method_suffix
1225 yield name, getattr(self, get_name), getattr(self, restore_name)
1226
1227 def __enter__(self):
1228 self.saved_values = dict((name, get()) for name, get, restore
1229 in self.resource_info())
1230 return self
1231
1232 def __exit__(self, exc_type, exc_val, exc_tb):
Antoine Pitrouaa879652010-10-29 11:54:38 +00001233 saved_values = self.saved_values
1234 del self.saved_values
Nick Coghlan6ead5522009-10-18 13:19:33 +00001235 for name, get, restore in self.resource_info():
1236 current = get()
Antoine Pitrouaa879652010-10-29 11:54:38 +00001237 original = saved_values.pop(name)
Nick Coghlan6ead5522009-10-18 13:19:33 +00001238 # Check for changes to the resource's value
1239 if current != original:
1240 self.changed = True
1241 restore(original)
1242 if not self.quiet:
1243 print("Warning -- {} was modified by {}".format(
1244 name, self.testname),
1245 file=sys.stderr)
1246 if self.verbose > 1:
1247 print(" Before: {}\n After: {} ".format(
1248 original, current),
1249 file=sys.stderr)
1250 return False
1251
1252
Victor Stinnera7c33e52011-06-29 13:00:54 +02001253def runtest_inner(test, verbose, quiet,
Eli Benderskye8de2962013-09-02 17:01:10 -07001254 huntrleaks=False, display_failure=True):
Benjamin Petersonee8712c2008-05-20 21:35:26 +00001255 support.unload(test)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001256
Antoine Pitrou88909542009-06-29 13:54:42 +00001257 test_time = 0.0
Collin Wintera5503d52009-05-15 01:20:21 +00001258 refleak = False # True if the test leaked references.
Guido van Rossum152494a1996-12-20 03:12:20 +00001259 try:
R. David Murray0bc11ae2009-10-18 22:18:17 +00001260 if test.startswith('test.'):
1261 abstest = test
1262 else:
1263 # Always import it from the test package
1264 abstest = 'test.' + test
1265 with saved_test_environment(test, verbose, quiet) as environment:
1266 start_time = time.time()
Brett Cannon613cf252012-11-14 13:42:51 -05001267 the_module = importlib.import_module(abstest)
R David Murray78fc25c2012-04-09 08:55:42 -04001268 # If the test has a test_main, that will run the appropriate
1269 # tests. If not, use normal unittest test loading.
1270 test_runner = getattr(the_module, "test_main", None)
1271 if test_runner is None:
Zachary Ware69fb6a42014-08-04 11:15:10 -05001272 def test_runner():
1273 loader = unittest.TestLoader()
1274 tests = loader.loadTestsFromModule(the_module)
Victor Stinner5d575392015-01-06 14:05:03 +01001275 for error in loader.errors:
1276 print(error, file=sys.stderr)
1277 if loader.errors:
1278 raise Exception("errors while loading tests")
Zachary Ware69fb6a42014-08-04 11:15:10 -05001279 support.run_unittest(tests)
R David Murray78fc25c2012-04-09 08:55:42 -04001280 test_runner()
R. David Murray0bc11ae2009-10-18 22:18:17 +00001281 if huntrleaks:
Eli Benderskye5eebed2013-09-02 16:52:25 -07001282 refleak = dash_R(the_module, test, test_runner, huntrleaks)
R. David Murray0bc11ae2009-10-18 22:18:17 +00001283 test_time = time.time() - start_time
Benjamin Petersonee8712c2008-05-20 21:35:26 +00001284 except support.ResourceDenied as msg:
Fred Drake9a0db072003-02-03 15:19:30 +00001285 if not quiet:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001286 print(test, "skipped --", msg)
Fred Drake9a0db072003-02-03 15:19:30 +00001287 sys.stdout.flush()
Benjamin Petersona0dfa822009-11-13 02:25:08 +00001288 return RESOURCE_DENIED, test_time
R. David Murraya21e4ca2009-03-31 23:16:50 +00001289 except unittest.SkipTest as msg:
Trent Mickf29f47b2000-08-11 19:02:59 +00001290 if not quiet:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001291 print(test, "skipped --", msg)
Guido van Rossum3cda93e2002-09-13 21:28:03 +00001292 sys.stdout.flush()
Benjamin Petersona0dfa822009-11-13 02:25:08 +00001293 return SKIPPED, test_time
Fred Drakefe5c22a2000-08-18 16:04:05 +00001294 except KeyboardInterrupt:
1295 raise
Benjamin Petersonee8712c2008-05-20 21:35:26 +00001296 except support.TestFailed as msg:
Victor Stinnera7c33e52011-06-29 13:00:54 +02001297 if display_failure:
1298 print("test", test, "failed --", msg, file=sys.stderr)
1299 else:
1300 print("test", test, "failed", file=sys.stderr)
R. David Murray11cabcf2010-09-29 01:08:05 +00001301 sys.stderr.flush()
Benjamin Petersona0dfa822009-11-13 02:25:08 +00001302 return FAILED, test_time
Guido van Rossum9e48b271997-07-16 01:56:13 +00001303 except:
Antoine Pitrou779a5b02011-03-21 19:55:16 +01001304 msg = traceback.format_exc()
1305 print("test", test, "crashed --", msg, file=sys.stderr)
R. David Murray11cabcf2010-09-29 01:08:05 +00001306 sys.stderr.flush()
Benjamin Petersona0dfa822009-11-13 02:25:08 +00001307 return FAILED, test_time
Guido van Rossum152494a1996-12-20 03:12:20 +00001308 else:
Collin Wintera5503d52009-05-15 01:20:21 +00001309 if refleak:
Benjamin Petersona0dfa822009-11-13 02:25:08 +00001310 return FAILED, test_time
Nick Coghlan6ead5522009-10-18 13:19:33 +00001311 if environment.changed:
Benjamin Petersona0dfa822009-11-13 02:25:08 +00001312 return ENV_CHANGED, test_time
1313 return PASSED, test_time
Guido van Rossum0fcca4e2001-09-21 20:31:52 +00001314
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001315def cleanup_test_droppings(testname, verbose):
1316 import shutil
Benjamin Peterson25c95f12009-05-08 20:42:26 +00001317 import stat
Antoine Pitrouc14efc42010-10-29 19:34:45 +00001318 import gc
1319
1320 # First kill any dangling references to open files etc.
1321 # This can also issue some ResourceWarnings which would otherwise get
Antoine Pitrou2b40efd2010-10-29 19:36:37 +00001322 # triggered during the following test run, and possibly produce failures.
Antoine Pitrouc14efc42010-10-29 19:34:45 +00001323 gc.collect()
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001324
1325 # Try to clean up junk commonly left behind. While tests shouldn't leave
1326 # any files or directories behind, when a test fails that can be tedious
1327 # for it to arrange. The consequences can be especially nasty on Windows,
1328 # since if a test leaves a file open, it cannot be deleted by name (while
1329 # there's nothing we can do about that here either, we can display the
1330 # name of the offending test, which is a real help).
Benjamin Petersonee8712c2008-05-20 21:35:26 +00001331 for name in (support.TESTFN,
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001332 "db_home",
1333 ):
1334 if not os.path.exists(name):
1335 continue
1336
1337 if os.path.isdir(name):
1338 kind, nuker = "directory", shutil.rmtree
1339 elif os.path.isfile(name):
1340 kind, nuker = "file", os.unlink
1341 else:
1342 raise SystemError("os.path says %r exists but is neither "
1343 "directory nor file" % name)
1344
1345 if verbose:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001346 print("%r left behind %s %r" % (testname, kind, name))
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001347 try:
Benjamin Peterson25c95f12009-05-08 20:42:26 +00001348 # if we have chmod, fix possible permissions problems
1349 # that might prevent cleanup
1350 if (hasattr(os, 'chmod')):
1351 os.chmod(name, stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001352 nuker(name)
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001353 except Exception as msg:
1354 print(("%r left behind %s %r and it couldn't be "
1355 "removed: %s" % (testname, kind, name, msg)), file=sys.stderr)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001356
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001357def dash_R(the_module, test, indirect_test, huntrleaks):
Collin Wintera5503d52009-05-15 01:20:21 +00001358 """Run a test multiple times, looking for reference leaks.
1359
1360 Returns:
1361 False if the test didn't leak references; True if we detected refleaks.
1362 """
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001363 # This code is hackish and inelegant, but it seems to do the job.
Raymond Hettinger158c9c22011-02-22 00:41:50 +00001364 import copyreg
1365 import collections.abc
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001366
1367 if not hasattr(sys, 'gettotalrefcount'):
1368 raise Exception("Tracking reference leaks requires a debug build "
1369 "of Python")
1370
1371 # Save current values for dash_R_cleanup() to restore.
1372 fs = warnings.filters[:]
Alexandre Vassalottif7fa63d2008-05-11 08:55:36 +00001373 ps = copyreg.dispatch_table.copy()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001374 pic = sys.path_importer_cache.copy()
Nick Coghlan260bd3e2009-11-16 06:49:25 +00001375 try:
1376 import zipimport
Brett Cannon260fbe82013-07-04 18:16:15 -04001377 except ImportError:
Benjamin Petersoncf626032014-02-16 14:52:01 -05001378 zdc = None # Run unmodified on platforms without zipimport support
Nick Coghlan260bd3e2009-11-16 06:49:25 +00001379 else:
1380 zdc = zipimport._zip_directory_cache.copy()
Christian Heimes93852662007-12-01 12:22:32 +00001381 abcs = {}
Raymond Hettinger158c9c22011-02-22 00:41:50 +00001382 for abc in [getattr(collections.abc, a) for a in collections.abc.__all__]:
Christian Heimesbe5b30b2008-03-03 19:18:51 +00001383 if not isabstract(abc):
Christian Heimes93852662007-12-01 12:22:32 +00001384 continue
1385 for obj in abc.__subclasses__() + [abc]:
1386 abcs[obj] = obj._abc_registry.copy()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001387
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001388 nwarmup, ntracked, fname = huntrleaks
Ezio Melotti184bdfb2010-02-18 09:37:05 +00001389 fname = os.path.join(support.SAVEDCWD, fname)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001390 repcount = nwarmup + ntracked
Antoine Pitrouf9d0b122012-12-09 14:28:26 +01001391 rc_deltas = [0] * repcount
1392 alloc_deltas = [0] * repcount
1393
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001394 print("beginning", repcount, "repetitions", file=sys.stderr)
1395 print(("1234567890"*(repcount//10 + 1))[:repcount], file=sys.stderr)
Antoine Pitrou88909542009-06-29 13:54:42 +00001396 sys.stderr.flush()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001397 for i in range(repcount):
R David Murray14d080e2013-01-12 11:34:38 -05001398 indirect_test()
Benjamin Petersonf617fa82014-02-16 14:53:55 -05001399 alloc_after, rc_after = dash_R_cleanup(fs, ps, pic, zdc, abcs)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001400 sys.stderr.write('.')
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001401 sys.stderr.flush()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001402 if i >= nwarmup:
Antoine Pitrouf9d0b122012-12-09 14:28:26 +01001403 rc_deltas[i] = rc_after - rc_before
1404 alloc_deltas[i] = alloc_after - alloc_before
1405 alloc_before, rc_before = alloc_after, rc_after
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001406 print(file=sys.stderr)
Antoine Pitrouf9d0b122012-12-09 14:28:26 +01001407 # These checkers return False on success, True on failure
1408 def check_rc_deltas(deltas):
1409 return any(deltas)
1410 def check_alloc_deltas(deltas):
1411 # At least 1/3rd of 0s
1412 if 3 * deltas.count(0) < len(deltas):
1413 return True
1414 # Nothing else than 1s, 0s and -1s
1415 if not set(deltas) <= {1,0,-1}:
1416 return True
1417 return False
1418 failed = False
1419 for deltas, item_name, checker in [
1420 (rc_deltas, 'references', check_rc_deltas),
1421 (alloc_deltas, 'memory blocks', check_alloc_deltas)]:
1422 if checker(deltas):
1423 msg = '%s leaked %s %s, sum=%s' % (
1424 test, deltas[nwarmup:], item_name, sum(deltas))
1425 print(msg, file=sys.stderr)
1426 sys.stderr.flush()
1427 with open(fname, "a") as refrep:
1428 print(msg, file=refrep)
1429 refrep.flush()
1430 failed = True
1431 return failed
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001432
Benjamin Petersoncf626032014-02-16 14:52:01 -05001433def dash_R_cleanup(fs, ps, pic, zdc, abcs):
Alexandre Vassalottif7fa63d2008-05-11 08:55:36 +00001434 import gc, copyreg
Brett Cannonf4fd9932008-05-10 21:11:46 +00001435 import _strptime, linecache
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001436 import urllib.parse, urllib.request, mimetypes, doctest
Raymond Hettinger158c9c22011-02-22 00:41:50 +00001437 import struct, filecmp, collections.abc
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001438 from distutils.dir_util import _path_created
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001439 from weakref import WeakSet
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001440
Christian Heimesdae2a892008-04-19 00:55:37 +00001441 # Clear the warnings registry, so they can be displayed again
1442 for mod in sys.modules.values():
1443 if hasattr(mod, '__warningregistry__'):
1444 del mod.__warningregistry__
1445
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001446 # Restore some original values.
1447 warnings.filters[:] = fs
Alexandre Vassalottif7fa63d2008-05-11 08:55:36 +00001448 copyreg.dispatch_table.clear()
1449 copyreg.dispatch_table.update(ps)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001450 sys.path_importer_cache.clear()
1451 sys.path_importer_cache.update(pic)
Nick Coghlan260bd3e2009-11-16 06:49:25 +00001452 try:
1453 import zipimport
Brett Cannon260fbe82013-07-04 18:16:15 -04001454 except ImportError:
Nick Coghlan260bd3e2009-11-16 06:49:25 +00001455 pass # Run unmodified on platforms without zipimport support
1456 else:
1457 zipimport._zip_directory_cache.clear()
1458 zipimport._zip_directory_cache.update(zdc)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001459
Christian Heimes26855632008-01-27 23:50:43 +00001460 # clear type cache
Christian Heimes15ebc882008-02-04 18:48:49 +00001461 sys._clear_type_cache()
Christian Heimes26855632008-01-27 23:50:43 +00001462
Guido van Rossum3de862d2007-08-18 00:10:33 +00001463 # Clear ABC registries, restoring previously saved ABC registries.
Raymond Hettinger158c9c22011-02-22 00:41:50 +00001464 for abc in [getattr(collections.abc, a) for a in collections.abc.__all__]:
Christian Heimesbe5b30b2008-03-03 19:18:51 +00001465 if not isabstract(abc):
Christian Heimes941973a2007-11-30 21:53:03 +00001466 continue
Guido van Rossum7eaf8222007-06-18 17:58:50 +00001467 for obj in abc.__subclasses__() + [abc]:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001468 obj._abc_registry = abcs.get(obj, WeakSet()).copy()
Guido van Rossumc1e315d2007-08-20 19:29:24 +00001469 obj._abc_cache.clear()
1470 obj._abc_negative_cache.clear()
Guido van Rossumcd16bf62007-06-13 18:07:49 +00001471
Antoine Pitrou046467c2009-10-30 18:30:35 +00001472 # Flush standard output, so that buffered data is sent to the OS and
1473 # associated Python objects are reclaimed.
1474 for stream in (sys.stdout, sys.stderr, sys.__stdout__, sys.__stderr__):
1475 if stream is not None:
1476 stream.flush()
1477
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001478 # Clear assorted module caches.
1479 _path_created.clear()
1480 re.purge()
1481 _strptime._regex_cache.clear()
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001482 urllib.parse.clear_cache()
1483 urllib.request.urlcleanup()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001484 linecache.clearcache()
1485 mimetypes._default_mime_types()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001486 filecmp._cache.clear()
Christian Heimesa34706f2008-01-04 03:06:10 +00001487 struct._clearcache()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001488 doctest.master = None
Meador Inge11e38132011-11-25 22:33:32 -06001489 try:
1490 import ctypes
Brett Cannon260fbe82013-07-04 18:16:15 -04001491 except ImportError:
Meador Inge11e38132011-11-25 22:33:32 -06001492 # Don't worry about resetting the cache if ctypes is not supported
1493 pass
1494 else:
1495 ctypes._reset_cache()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001496
Antoine Pitrouf9d0b122012-12-09 14:28:26 +01001497 # Collect cyclic trash and read memory statistics immediately after.
1498 func1 = sys.getallocatedblocks
1499 func2 = sys.gettotalrefcount
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001500 gc.collect()
Antoine Pitrouf9d0b122012-12-09 14:28:26 +01001501 return func1(), func2()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00001502
Stefan Krah5c3ddc82012-08-17 23:09:48 +02001503def warm_caches():
1504 # char cache
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001505 s = bytes(range(256))
1506 for i in range(256):
1507 s[i:i+1]
Stefan Krah5c3ddc82012-08-17 23:09:48 +02001508 # unicode cache
1509 x = [chr(i) for i in range(256)]
1510 # int cache
1511 x = list(range(-5, 257))
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001512
Florent Xiclunada7bfd52010-03-06 11:43:55 +00001513def findtestdir(path=None):
1514 return path or os.path.dirname(__file__) or os.curdir
Guido van Rossum152494a1996-12-20 03:12:20 +00001515
Florent Xiclunada7bfd52010-03-06 11:43:55 +00001516def removepy(names):
1517 if not names:
1518 return
1519 for idx, name in enumerate(names):
1520 basename, ext = os.path.splitext(name)
1521 if ext == '.py':
1522 names[idx] = basename
Tim Petersc5000df2002-06-02 21:42:01 +00001523
Guido van Rossum152494a1996-12-20 03:12:20 +00001524def count(n, word):
1525 if n == 1:
Guido van Rossum41360a41998-03-26 19:42:58 +00001526 return "%d %s" % (n, word)
Guido van Rossum152494a1996-12-20 03:12:20 +00001527 else:
Guido van Rossum41360a41998-03-26 19:42:58 +00001528 return "%d %ss" % (n, word)
Guido van Rossum152494a1996-12-20 03:12:20 +00001529
Tim Petersa45da922001-08-12 03:45:50 +00001530def printlist(x, width=70, indent=4):
Tim Peters7c7efe92002-08-23 17:55:54 +00001531 """Print the elements of iterable x to stdout.
Tim Petersa45da922001-08-12 03:45:50 +00001532
1533 Optional arg width (default 70) is the maximum line length.
1534 Optional arg indent (default 4) is the number of blanks with which to
1535 begin each line.
1536 """
1537
Tim Petersba78bc42002-07-04 19:45:06 +00001538 from textwrap import fill
1539 blanks = ' ' * indent
Florent Xiclunafd1b0932010-03-28 00:25:02 +00001540 # Print the sorted list: 'x' may be a '--random' list or a set()
1541 print(fill(' '.join(str(elt) for elt in sorted(x)), width,
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001542 initial_indent=blanks, subsequent_indent=blanks))
Tim Petersa45da922001-08-12 03:45:50 +00001543
Tim Petersb5b7b782001-08-12 01:20:39 +00001544
Chris Jerdonek517e9252013-02-27 09:02:53 -08001545def main_in_temp_cwd():
1546 """Run main() in a temporary working directory."""
Michael Foord3ab34cc2010-12-03 12:27:40 +00001547 if sysconfig.is_python_build():
Antoine Pitrouee429342011-04-16 18:53:59 +02001548 try:
Michael Foord3ab34cc2010-12-03 12:27:40 +00001549 os.mkdir(TEMPDIR)
Florent Xicluna68f71a32011-10-28 16:06:23 +02001550 except FileExistsError:
1551 pass
Michael Foord3ab34cc2010-12-03 12:27:40 +00001552
1553 # Define a writable temp dir that will be used as cwd while running
1554 # the tests. The name of the dir includes the pid to allow parallel
1555 # testing (see the -j option).
Chris Jerdonek517e9252013-02-27 09:02:53 -08001556 test_cwd = 'test_python_{}'.format(os.getpid())
1557 test_cwd = os.path.join(TEMPDIR, test_cwd)
Michael Foord3ab34cc2010-12-03 12:27:40 +00001558
Chris Jerdonek517e9252013-02-27 09:02:53 -08001559 # Run the tests in a context manager that temporarily changes the CWD to a
1560 # temporary and writable directory. If it's not possible to create or
1561 # change the CWD, the original CWD will be used. The original CWD is
1562 # available from support.SAVEDCWD.
1563 with support.temp_cwd(test_cwd, quiet=True):
1564 main()
1565
Nick Coghlan4c4c0f22010-12-03 07:44:33 +00001566
Guido van Rossum152494a1996-12-20 03:12:20 +00001567if __name__ == '__main__':
Nick Coghlan4c4c0f22010-12-03 07:44:33 +00001568 # Remove regrtest.py's own directory from the module search path. Despite
1569 # the elimination of implicit relative imports, this is still needed to
1570 # ensure that submodules of the test package do not inappropriately appear
1571 # as top-level modules even when people (or buildbots!) invoke regrtest.py
1572 # directly instead of using the -m switch
1573 mydir = os.path.abspath(os.path.normpath(os.path.dirname(sys.argv[0])))
1574 i = len(sys.path)
1575 while i >= 0:
1576 i -= 1
1577 if os.path.abspath(os.path.normpath(sys.path[i])) == mydir:
1578 del sys.path[i]
1579
Florent Xiclunadc69e722010-09-13 16:35:02 +00001580 # findtestdir() gets the dirname out of __file__, so we have to make it
1581 # absolute before changing the working directory.
1582 # For example __file__ may be relative when running trace or profile.
1583 # See issue #9323.
1584 __file__ = os.path.abspath(__file__)
1585
1586 # sanity check
Florent Xiclunada7bfd52010-03-06 11:43:55 +00001587 assert __file__ == os.path.abspath(sys.argv[0])
Ezio Melotti184bdfb2010-02-18 09:37:05 +00001588
Chris Jerdonek517e9252013-02-27 09:02:53 -08001589 main_in_temp_cwd()