blob: 2d485b3250ca227a5709718342993c0d5ff55628 [file] [log] [blame]
Guido van Rossum152494a1996-12-20 03:12:20 +00001#! /usr/bin/env python
2
3"""Regression test.
4
5This will find all modules whose name is "test_*" in the test
6directory, and run them. Various command line options provide
7additional facilities.
8
9Command line options:
10
Michael W. Hudson61147f62004-08-03 11:33:28 +000011-v: verbose -- run tests in verbose mode with output to stdout
Martin v. Löwis04824ce2006-03-10 21:26:16 +000012-w: verbose2 -- re-run failed tests in verbose mode
Neal Norwitz94fa2ee2008-03-31 02:55:15 +000013-d: debug -- print traceback for failed tests
Michael W. Hudson61147f62004-08-03 11:33:28 +000014-q: quiet -- don't print anything except if a test fails
Michael W. Hudson61147f62004-08-03 11:33:28 +000015-x: exclude -- arguments are tests to *exclude*
16-s: single -- run only a single test (see below)
Christian Heimesb186d002008-03-18 15:15:01 +000017-S: slow -- print the slowest 10 tests
Michael W. Hudson61147f62004-08-03 11:33:28 +000018-r: random -- randomize test execution order
19-f: fromfile -- read names of tests to run from a file (see below)
20-l: findleaks -- if GC is available detect tests that leak memory
21-u: use -- specify which special resource intensive tests to run
22-h: help -- print this text and exit
23-t: threshold -- call gc.set_threshold(N)
24-T: coverage -- turn on code coverage using the trace module
Walter Dörwaldaee4da62004-11-12 18:51:27 +000025-D: coverdir -- Directory where coverage files are put
26-N: nocoverdir -- Put coverage files alongside modules
Michael W. Hudson61147f62004-08-03 11:33:28 +000027-L: runleaks -- run the leaks(1) command just before exit
28-R: huntrleaks -- search for reference leaks (needs debug build, v. slow)
Thomas Wouters477c8d52006-05-27 19:21:47 +000029-M: memlimit -- run very large memory-consuming tests
Neal Norwitz94fa2ee2008-03-31 02:55:15 +000030-n: nowindows -- suppress error message boxes on Windows
Antoine Pitrou88909542009-06-29 13:54:42 +000031-j: multiprocess -- run several processes at once
Guido van Rossum152494a1996-12-20 03:12:20 +000032
33If non-option arguments are present, they are names for tests to run,
34unless -x is given, in which case they are names for tests not to run.
35If no test names are given, all tests are run.
Guido van Rossumf58ed251997-03-07 21:04:33 +000036
Collin Winterfd12f492009-03-29 04:05:05 +000037-r randomizes test execution order. You can use --randseed=int to provide a
38int seed value for the randomizer; this is useful for reproducing troublesome
39test orders.
40
Barry Warsaw3b6d0252004-02-07 22:43:03 +000041-T turns on code coverage tracing with the trace module.
42
Walter Dörwaldaee4da62004-11-12 18:51:27 +000043-D specifies the directory where coverage files are put.
44
45-N Put coverage files alongside modules.
46
Guido van Rossum9e9d4f82002-06-07 15:17:03 +000047-s means to run only a single test and exit. This is useful when
48doing memory analysis on the Python interpreter (which tend to consume
49too many resources to run the full regression test non-stop). The
50file /tmp/pynexttest is read to find the next test to run. If this
51file is missing, the first test_*.py file in testdir or on the command
52line is used. (actually tempfile.gettempdir() is used instead of
53/tmp).
Barry Warsawe11e3de1999-01-28 19:51:51 +000054
Neal Norwitz94fa2ee2008-03-31 02:55:15 +000055-S is used to continue running tests after an aborted run. It will
56maintain the order a standard run (ie, this assumes -r is not used).
57This is useful after the tests have prematurely stopped for some external
58reason and you want to start running from where you left off rather
59than starting from the beginning.
60
Guido van Rossum9e9d4f82002-06-07 15:17:03 +000061-f reads the names of tests from the file given as f's argument, one
62or more test names per line. Whitespace is ignored. Blank lines and
63lines beginning with '#' are ignored. This is especially useful for
64whittling down failures involving interactions among tests.
Tim Petersc5000df2002-06-02 21:42:01 +000065
Skip Montanaro0179a182004-06-06 15:53:18 +000066-L causes the leaks(1) command to be run just before exit if it exists.
67leaks(1) is available on Mac OS X and presumably on some other
68FreeBSD-derived systems.
69
Michael W. Hudson61147f62004-08-03 11:33:28 +000070-R runs each test several times and examines sys.gettotalrefcount() to
71see if the test appears to be leaking references. The argument should
72be of the form stab:run:fname where 'stab' is the number of times the
73test is run to let gettotalrefcount settle down, 'run' is the number
74of times further it is run and 'fname' is the name of the file the
75reports are written to. These parameters all have defaults (5, 4 and
Neal Norwitz94fa2ee2008-03-31 02:55:15 +000076"reflog.txt" respectively), and the minimal invocation is '-R :'.
Michael W. Hudson61147f62004-08-03 11:33:28 +000077
Thomas Wouters477c8d52006-05-27 19:21:47 +000078-M runs tests that require an exorbitant amount of memory. These tests
79typically try to ascertain containers keep working when containing more than
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000802 billion objects, which only works on 64-bit systems. There are also some
81tests that try to exhaust the address space of the process, which only makes
82sense on 32-bit systems with at least 2Gb of memory. The passed-in memlimit,
Thomas Wouters477c8d52006-05-27 19:21:47 +000083which is a string in the form of '2.5Gb', determines howmuch memory the
84tests will limit themselves to (but they may go slightly over.) The number
85shouldn't be more memory than the machine has (including swap memory). You
86should also keep in mind that swap memory is generally much, much slower
87than RAM, and setting memlimit to all available RAM or higher will heavily
88tax the machine. On the other hand, it is no use running these tests with a
89limit of less than 2.5Gb, and many require more than 20Gb. Tests that expect
90to use more than memlimit memory will be skipped. The big-memory tests
91generally run very, very long.
92
Guido van Rossum9e9d4f82002-06-07 15:17:03 +000093-u is used to specify which special resource intensive tests to run,
94such as those requiring large file support or network connectivity.
95The argument is a comma-separated list of words indicating the
96resources to test. Currently only the following are defined:
Barry Warsaw08fca522001-08-20 22:33:46 +000097
Fred Drake3a15dac2002-04-11 16:39:16 +000098 all - Enable all special resources.
99
Guido van Rossum315aa362003-03-11 14:46:48 +0000100 audio - Tests that use the audio device. (There are known
101 cases of broken audio drivers that can crash Python or
102 even the Linux kernel.)
103
Andrew M. Kuchling2158df02001-10-22 15:26:09 +0000104 curses - Tests that use curses and will modify the terminal's
105 state and output modes.
Tim Peters1633a2e2001-10-30 05:56:40 +0000106
Georg Brandl86b2fb92008-07-16 03:43:04 +0000107 lib2to3 - Run the tests for 2to3 (They take a while.)
108
Guido van Rossum9e9d4f82002-06-07 15:17:03 +0000109 largefile - It is okay to run some test that may create huge
110 files. These tests can take a long time and may
111 consume >2GB of disk space temporarily.
Barry Warsaw08fca522001-08-20 22:33:46 +0000112
Guido van Rossum9e9d4f82002-06-07 15:17:03 +0000113 network - It is okay to run tests that use external network
114 resource, e.g. testing SSL support for sockets.
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +0000115
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000116 decimal - Test the decimal module against a large suite that
117 verifies compliance with standards.
118
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000119 compiler - Allow test_tokenize to verify round-trip lexing on
120 every file in the test library.
Jeremy Hylton4336eda2004-08-07 19:25:33 +0000121
Tim Peterseba28be2005-03-28 01:08:02 +0000122 subprocess Run all tests for the subprocess module.
Peter Astrandf7f1bb72005-03-03 20:47:37 +0000123
Hye-Shik Changaaa2f1d2005-12-10 17:44:27 +0000124 urlfetch - It is okay to download files required on testing.
125
Guilherme Polo9de29af2009-01-28 20:40:48 +0000126 gui - Run tests that require a running GUI.
127
Fred Drake4dd0f7e2002-11-26 21:44:56 +0000128To enable all resources except one, use '-uall,-<resource>'. For
Georg Brandl1158a332009-06-04 09:30:30 +0000129example, to run all the tests except for the gui tests, give the
130option '-uall,-gui'.
Guido van Rossum152494a1996-12-20 03:12:20 +0000131"""
132
Guido van Rossum152494a1996-12-20 03:12:20 +0000133import getopt
Antoine Pitrou88909542009-06-29 13:54:42 +0000134import json
Christian Heimesb186d002008-03-18 15:15:01 +0000135import os
Skip Montanaroab1c7912000-06-30 16:39:27 +0000136import random
Thomas Wouters9ada3d62006-04-21 09:47:09 +0000137import re
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000138import io
Christian Heimesb186d002008-03-18 15:15:01 +0000139import sys
140import time
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000141import traceback
Christian Heimesb186d002008-03-18 15:15:01 +0000142import warnings
Benjamin Petersone549ead2009-03-28 21:42:05 +0000143import unittest
Christian Heimesbe5b30b2008-03-03 19:18:51 +0000144from inspect import isabstract
Guido van Rossumdc15c272002-08-12 21:55:51 +0000145
146# I see no other way to suppress these warnings;
147# putting them in test_grammar.py has no effect:
Guido van Rossum88b1def2002-08-14 17:54:48 +0000148warnings.filterwarnings("ignore", "hex/oct constants", FutureWarning,
Guido van Rossumdc15c272002-08-12 21:55:51 +0000149 ".*test.test_grammar$")
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000150if sys.maxsize > 0x7fffffff:
Guido van Rossumc34c4fc2002-09-19 00:42:16 +0000151 # Also suppress them in <string>, because for 64-bit platforms,
152 # that's where test_grammar.py hides them.
153 warnings.filterwarnings("ignore", "hex/oct constants", FutureWarning,
154 "<string>")
Guido van Rossum152494a1996-12-20 03:12:20 +0000155
Thomas Wouters477c8d52006-05-27 19:21:47 +0000156# Ignore ImportWarnings that only occur in the source tree,
157# (because of modules with the same name as source-directories in Modules/)
158for mod in ("ctypes", "gzip", "zipfile", "tarfile", "encodings.zlib_codec",
159 "test.test_zipimport", "test.test_zlib", "test.test_zipfile",
160 "test.test_codecs", "test.string_tests"):
161 warnings.filterwarnings(module=".*%s$" % (mod,),
162 action="ignore", category=ImportWarning)
163
Guido van Rossumbb484652002-12-02 09:56:21 +0000164# MacOSX (a.k.a. Darwin) has a default stack size that is too small
165# for deeply recursive regular expressions. We see this as crashes in
166# the Python test suite when running test_re.py and test_sre.py. The
167# fix is to set the stack limit to 2048.
168# This approach may also be useful for other Unixy platforms that
169# suffer from small default stack limits.
170if sys.platform == 'darwin':
171 try:
172 import resource
173 except ImportError:
174 pass
175 else:
176 soft, hard = resource.getrlimit(resource.RLIMIT_STACK)
177 newsoft = min(hard, max(soft, 1024*2048))
178 resource.setrlimit(resource.RLIMIT_STACK, (newsoft, hard))
179
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000180from test import support
Fred Drake3a15dac2002-04-11 16:39:16 +0000181
Georg Brandl1158a332009-06-04 09:30:30 +0000182RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network',
Guilherme Polo9de29af2009-01-28 20:40:48 +0000183 'decimal', 'compiler', 'subprocess', 'urlfetch', 'gui')
Fred Drake3a15dac2002-04-11 16:39:16 +0000184
185
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000186def usage(msg):
187 print(msg, file=sys.stderr)
188 print("Use --help for usage", file=sys.stderr)
189 sys.exit(2)
Barry Warsaw08fca522001-08-20 22:33:46 +0000190
191
Antoine Pitrou88909542009-06-29 13:54:42 +0000192def main(tests=None, testdir=None, verbose=0, quiet=False,
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000193 exclude=False, single=False, randomize=False, fromfile=None,
Walter Dörwaldaee4da62004-11-12 18:51:27 +0000194 findleaks=False, use_resources=None, trace=False, coverdir='coverage',
Collin Winterfd12f492009-03-29 04:05:05 +0000195 runleaks=False, huntrleaks=False, verbose2=False, print_slow=False,
Antoine Pitrou88909542009-06-29 13:54:42 +0000196 random_seed=None, use_mp=None):
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000197 """Execute a test suite.
198
Thomas Wouters7e474022000-07-16 12:04:32 +0000199 This also parses command-line options and modifies its behavior
Fred Drake004d5e62000-10-23 17:22:08 +0000200 accordingly.
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000201
202 tests -- a list of strings containing test names (optional)
203 testdir -- the directory in which to look for tests (optional)
204
205 Users other than the Python test suite will certainly want to
206 specify testdir; if it's omitted, the directory containing the
Fred Drake004d5e62000-10-23 17:22:08 +0000207 Python test suite is searched for.
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000208
209 If the tests argument is omitted, the tests listed on the
210 command-line will be used. If that's empty, too, then all *.py
211 files beginning with test_ will be used.
Skip Montanaroab1c7912000-06-30 16:39:27 +0000212
Antoine Pitrou88909542009-06-29 13:54:42 +0000213 The other default arguments (verbose, quiet, exclude,
Collin Winterfd12f492009-03-29 04:05:05 +0000214 single, randomize, findleaks, use_resources, trace, coverdir,
215 print_slow, and random_seed) allow programmers calling main()
216 directly to set the values that would normally be set by flags
217 on the command line.
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000218 """
Fred Drake004d5e62000-10-23 17:22:08 +0000219
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000220 support.record_original_stdout(sys.stdout)
Guido van Rossum152494a1996-12-20 03:12:20 +0000221 try:
Antoine Pitrou88909542009-06-29 13:54:42 +0000222 opts, args = getopt.getopt(sys.argv[1:], 'hvqxsSrf:lu:t:TD:NLR:wM:nj:',
Christian Heimesb186d002008-03-18 15:15:01 +0000223 ['help', 'verbose', 'quiet', 'exclude',
224 'single', 'slow', 'random', 'fromfile',
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000225 'findleaks', 'use=', 'threshold=', 'trace',
Walter Dörwaldaee4da62004-11-12 18:51:27 +0000226 'coverdir=', 'nocoverdir', 'runleaks',
Thomas Wouters477c8d52006-05-27 19:21:47 +0000227 'huntrleaks=', 'verbose2', 'memlimit=',
Collin Winterfd12f492009-03-29 04:05:05 +0000228 'debug', 'start=', 'nowindows',
Antoine Pitrou88909542009-06-29 13:54:42 +0000229 'randseed=', 'multiprocess=', 'slaveargs=',
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000230 ])
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000231 except getopt.error as msg:
232 usage(msg)
Barry Warsaw08fca522001-08-20 22:33:46 +0000233
234 # Defaults
Collin Winterfd12f492009-03-29 04:05:05 +0000235 if random_seed is None:
236 random_seed = random.randrange(10000000)
Barry Warsaw08fca522001-08-20 22:33:46 +0000237 if use_resources is None:
238 use_resources = []
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000239 debug = False
240 start = None
Guido van Rossum152494a1996-12-20 03:12:20 +0000241 for o, a in opts:
Barry Warsaw08fca522001-08-20 22:33:46 +0000242 if o in ('-h', '--help'):
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000243 print(__doc__)
244 return
Barry Warsaw08fca522001-08-20 22:33:46 +0000245 elif o in ('-v', '--verbose'):
246 verbose += 1
Martin v. Löwis04824ce2006-03-10 21:26:16 +0000247 elif o in ('-w', '--verbose2'):
248 verbose2 = True
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000249 elif o in ('-d', '--debug'):
250 debug = True
Barry Warsaw08fca522001-08-20 22:33:46 +0000251 elif o in ('-q', '--quiet'):
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000252 quiet = True;
Barry Warsaw08fca522001-08-20 22:33:46 +0000253 verbose = 0
Barry Warsaw08fca522001-08-20 22:33:46 +0000254 elif o in ('-x', '--exclude'):
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000255 exclude = True
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000256 elif o in ('-S', '--start'):
257 start = a
Barry Warsaw08fca522001-08-20 22:33:46 +0000258 elif o in ('-s', '--single'):
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000259 single = True
Christian Heimesb186d002008-03-18 15:15:01 +0000260 elif o in ('-S', '--slow'):
261 print_slow = True
Barry Warsaw08fca522001-08-20 22:33:46 +0000262 elif o in ('-r', '--randomize'):
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000263 randomize = True
Collin Winterfd12f492009-03-29 04:05:05 +0000264 elif o == '--randseed':
265 random_seed = int(a)
Tim Petersc5000df2002-06-02 21:42:01 +0000266 elif o in ('-f', '--fromfile'):
267 fromfile = a
Barry Warsaw08fca522001-08-20 22:33:46 +0000268 elif o in ('-l', '--findleaks'):
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000269 findleaks = True
Skip Montanaro0179a182004-06-06 15:53:18 +0000270 elif o in ('-L', '--runleaks'):
271 runleaks = True
Guido van Rossum9e9d4f82002-06-07 15:17:03 +0000272 elif o in ('-t', '--threshold'):
273 import gc
274 gc.set_threshold(int(a))
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000275 elif o in ('-T', '--coverage'):
276 trace = True
Walter Dörwaldaee4da62004-11-12 18:51:27 +0000277 elif o in ('-D', '--coverdir'):
278 coverdir = os.path.join(os.getcwd(), a)
279 elif o in ('-N', '--nocoverdir'):
280 coverdir = None
Michael W. Hudson61147f62004-08-03 11:33:28 +0000281 elif o in ('-R', '--huntrleaks'):
282 huntrleaks = a.split(':')
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000283 if len(huntrleaks) not in (2, 3):
284 print(a, huntrleaks)
285 usage('-R takes 2 or 3 colon-separated arguments')
286 if not huntrleaks[0]:
Michael W. Hudson61147f62004-08-03 11:33:28 +0000287 huntrleaks[0] = 5
288 else:
289 huntrleaks[0] = int(huntrleaks[0])
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000290 if not huntrleaks[1]:
Michael W. Hudson61147f62004-08-03 11:33:28 +0000291 huntrleaks[1] = 4
292 else:
293 huntrleaks[1] = int(huntrleaks[1])
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000294 if len(huntrleaks) == 2 or not huntrleaks[2]:
295 huntrleaks[2:] = ["reflog.txt"]
296 # Avoid false positives due to the character cache in
297 # stringobject.c filling slowly with random data
298 warm_char_cache()
Thomas Wouters477c8d52006-05-27 19:21:47 +0000299 elif o in ('-M', '--memlimit'):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000300 support.set_memlimit(a)
Barry Warsaw08fca522001-08-20 22:33:46 +0000301 elif o in ('-u', '--use'):
Guido van Rossumfe3f6962001-09-06 16:09:41 +0000302 u = [x.lower() for x in a.split(',')]
303 for r in u:
Fred Drake3a15dac2002-04-11 16:39:16 +0000304 if r == 'all':
Fred Drake4dd0f7e2002-11-26 21:44:56 +0000305 use_resources[:] = RESOURCE_NAMES
306 continue
307 remove = False
308 if r[0] == '-':
309 remove = True
310 r = r[1:]
Fred Drake3a15dac2002-04-11 16:39:16 +0000311 if r not in RESOURCE_NAMES:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000312 usage('Invalid -u/--use option: ' + a)
Fred Drake4dd0f7e2002-11-26 21:44:56 +0000313 if remove:
314 if r in use_resources:
315 use_resources.remove(r)
316 elif r not in use_resources:
Andrew MacIntyree41abab2002-04-30 12:11:04 +0000317 use_resources.append(r)
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000318 elif o in ('-n', '--nowindows'):
319 import msvcrt
320 msvcrt.SetErrorMode(msvcrt.SEM_FAILCRITICALERRORS|
321 msvcrt.SEM_NOALIGNMENTFAULTEXCEPT|
322 msvcrt.SEM_NOGPFAULTERRORBOX|
323 msvcrt.SEM_NOOPENFILEERRORBOX)
324 try:
325 msvcrt.CrtSetReportMode
326 except AttributeError:
327 # release build
328 pass
329 else:
330 for m in [msvcrt.CRT_WARN, msvcrt.CRT_ERROR, msvcrt.CRT_ASSERT]:
331 msvcrt.CrtSetReportMode(m, msvcrt.CRTDBG_MODE_FILE)
332 msvcrt.CrtSetReportFile(m, msvcrt.CRTDBG_FILE_STDERR)
Antoine Pitrou88909542009-06-29 13:54:42 +0000333 elif o in ('-j', '--multiprocess'):
334 use_mp = int(a)
335 elif o == '--slaveargs':
336 args, kwargs = json.loads(a)
337 try:
338 result = runtest(*args, **kwargs)
339 except BaseException as e:
R. David Murray0bc11ae2009-10-18 22:18:17 +0000340 result = -4, e.__class__.__name__
Antoine Pitrou88909542009-06-29 13:54:42 +0000341 sys.stdout.flush()
342 print() # Force a newline (just in case)
343 print(json.dumps(result))
344 sys.exit(0)
Tim Petersc5000df2002-06-02 21:42:01 +0000345 if single and fromfile:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000346 usage("-s and -f don't go together!")
Antoine Pitrou88909542009-06-29 13:54:42 +0000347 if use_mp and trace:
348 usage(2, "-T and -j don't go together!")
349 if use_mp and findleaks:
350 usage(2, "-l and -j don't go together!")
Barry Warsaw08fca522001-08-20 22:33:46 +0000351
Guido van Rossum152494a1996-12-20 03:12:20 +0000352 good = []
353 bad = []
354 skipped = []
Fred Drake9a0db072003-02-03 15:19:30 +0000355 resource_denieds = []
Nick Coghlan6ead5522009-10-18 13:19:33 +0000356 environment_changed = []
Barry Warsawe11e3de1999-01-28 19:51:51 +0000357
Neil Schemenauerd569f232000-09-22 15:29:28 +0000358 if findleaks:
Barry Warsawa873b032000-08-03 15:50:37 +0000359 try:
360 import gc
361 except ImportError:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000362 print('No GC available, disabling findleaks.')
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000363 findleaks = False
Barry Warsawa873b032000-08-03 15:50:37 +0000364 else:
Neil Schemenauer8a00abc2000-10-13 01:32:42 +0000365 # Uncomment the line below to report garbage that is not
366 # freeable by reference counting alone. By default only
367 # garbage that is not collectable by the GC is reported.
368 #gc.set_debug(gc.DEBUG_SAVEALL)
Neil Schemenauerd569f232000-09-22 15:29:28 +0000369 found_garbage = []
Barry Warsawa873b032000-08-03 15:50:37 +0000370
Barry Warsawe11e3de1999-01-28 19:51:51 +0000371 if single:
372 from tempfile import gettempdir
373 filename = os.path.join(gettempdir(), 'pynexttest')
374 try:
375 fp = open(filename, 'r')
Eric S. Raymondfc170b12001-02-09 11:51:27 +0000376 next = fp.read().strip()
Barry Warsawe11e3de1999-01-28 19:51:51 +0000377 tests = [next]
378 fp.close()
379 except IOError:
380 pass
Tim Petersc5000df2002-06-02 21:42:01 +0000381
382 if fromfile:
383 tests = []
384 fp = open(fromfile)
385 for line in fp:
386 guts = line.split() # assuming no test has whitespace in its name
387 if guts and not guts[0].startswith('#'):
388 tests.extend(guts)
389 fp.close()
390
391 # Strip .py extensions.
392 if args:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000393 args = list(map(removepy, args))
Tim Petersc5000df2002-06-02 21:42:01 +0000394 if tests:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000395 tests = list(map(removepy, tests))
Tim Petersc5000df2002-06-02 21:42:01 +0000396
Guido van Rossum6c74fea1998-08-25 12:29:08 +0000397 stdtests = STDTESTS[:]
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000398 nottests = NOTTESTS.copy()
Guido van Rossum152494a1996-12-20 03:12:20 +0000399 if exclude:
Guido van Rossum6c74fea1998-08-25 12:29:08 +0000400 for arg in args:
401 if arg in stdtests:
402 stdtests.remove(arg)
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000403 nottests.add(arg)
Guido van Rossum41360a41998-03-26 19:42:58 +0000404 args = []
Guido van Rossum747e1ca1998-08-24 13:48:36 +0000405 tests = tests or args or findtests(testdir, stdtests, nottests)
Barry Warsawe11e3de1999-01-28 19:51:51 +0000406 if single:
407 tests = tests[:1]
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000408 # Remove all the tests that precede start if it's set.
409 if start:
410 try:
411 del tests[:tests.index(start)]
412 except ValueError:
413 print("Couldn't find starting test (%s), using all tests" % start)
Skip Montanaroab1c7912000-06-30 16:39:27 +0000414 if randomize:
Collin Winterfd12f492009-03-29 04:05:05 +0000415 random.seed(random_seed)
416 print("Using random seed", random_seed)
Skip Montanaroab1c7912000-06-30 16:39:27 +0000417 random.shuffle(tests)
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000418 if trace:
Georg Brandl33c28812009-04-01 23:07:29 +0000419 import trace, tempfile
420 tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,
421 tempfile.gettempdir()],
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000422 trace=False, count=True)
Christian Heimesb186d002008-03-18 15:15:01 +0000423 test_times = []
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000424 support.verbose = verbose # Tell tests to be moderately quiet
425 support.use_resources = use_resources
Guido van Rossum5796d262000-04-21 21:35:06 +0000426 save_modules = sys.modules.keys()
Antoine Pitrou88909542009-06-29 13:54:42 +0000427
428 def accumulate_result(test, result):
429 ok, test_time = result
430 test_times.append((test_time, test))
431 if ok > 0:
432 good.append(test)
Nick Coghlan6ead5522009-10-18 13:19:33 +0000433 elif -2 < ok <= 0:
Antoine Pitrou88909542009-06-29 13:54:42 +0000434 bad.append(test)
Nick Coghlan6ead5522009-10-18 13:19:33 +0000435 if ok == -1:
436 environment_changed.append(test)
Guido van Rossum41360a41998-03-26 19:42:58 +0000437 else:
Antoine Pitrou88909542009-06-29 13:54:42 +0000438 skipped.append(test)
Nick Coghlan6ead5522009-10-18 13:19:33 +0000439 if ok == -3:
Antoine Pitrou88909542009-06-29 13:54:42 +0000440 resource_denieds.append(test)
441
442 if use_mp:
R. David Murray9da81972009-10-19 16:53:55 +0000443 from threading import Thread
Antoine Pitrou88909542009-06-29 13:54:42 +0000444 from queue import Queue, Empty
445 from subprocess import Popen, PIPE, STDOUT
446 from collections import deque
Antoine Pitrou88909542009-06-29 13:54:42 +0000447 debug_output_pat = re.compile(r"\[\d+ refs\]$")
448 pending = deque()
449 output = Queue()
450 for test in tests:
451 args_tuple = (
452 (test, verbose, quiet, testdir),
453 dict(huntrleaks=huntrleaks, use_resources=use_resources,
454 debug=debug)
455 )
456 pending.append((test, args_tuple))
457 def work():
458 # A worker thread.
Neal Norwitz14ca3272006-02-28 18:05:43 +0000459 try:
Antoine Pitrou88909542009-06-29 13:54:42 +0000460 while True:
461 try:
462 test, args_tuple = pending.popleft()
463 except IndexError:
R. David Murray27144602009-10-19 15:26:16 +0000464 output.put((None, None, None, None))
Antoine Pitrou88909542009-06-29 13:54:42 +0000465 return
Antoine Pitrou88909542009-06-29 13:54:42 +0000466 # -E is needed by some tests, e.g. test_import
467 popen = Popen([sys.executable, '-E', '-m', 'test.regrtest',
468 '--slaveargs', json.dumps(args_tuple)],
R. David Murray27144602009-10-19 15:26:16 +0000469 stdout=PIPE, stderr=PIPE,
Antoine Pitrou88909542009-06-29 13:54:42 +0000470 universal_newlines=True, close_fds=True)
R. David Murray27144602009-10-19 15:26:16 +0000471 stdout, stderr = popen.communicate()
472 # Strip last refcount output line if it exists, since it
473 # comes from the shutdown of the interpreter in the subcommand.
474 stderr = debug_output_pat.sub("", stderr)
475 stdout, _, result = stdout.strip().rpartition("\n")
Antoine Pitrou88909542009-06-29 13:54:42 +0000476 result = json.loads(result)
R. David Murray27144602009-10-19 15:26:16 +0000477 if not quiet:
478 stdout = test+'\n'+stdout
479 output.put((test, stdout.rstrip(), stderr.rstrip(), result))
Antoine Pitrou88909542009-06-29 13:54:42 +0000480 except BaseException:
R. David Murray27144602009-10-19 15:26:16 +0000481 output.put((None, None, None, None))
Neal Norwitz14ca3272006-02-28 18:05:43 +0000482 raise
Antoine Pitrou88909542009-06-29 13:54:42 +0000483 workers = [Thread(target=work) for i in range(use_mp)]
484 for worker in workers:
485 worker.start()
486 finished = 0
487 while finished < use_mp:
R. David Murray27144602009-10-19 15:26:16 +0000488 test, stdout, stderr, result = output.get()
Antoine Pitrou88909542009-06-29 13:54:42 +0000489 if test is None:
490 finished += 1
491 continue
R. David Murray27144602009-10-19 15:26:16 +0000492 if stdout:
493 print(stdout)
494 if stderr:
495 print(stderr, file=sys.stderr)
R. David Murray0bc11ae2009-10-18 22:18:17 +0000496 if result[0] == -4:
Antoine Pitrou88909542009-06-29 13:54:42 +0000497 assert result[1] == 'KeyboardInterrupt'
498 pending.clear()
499 raise KeyboardInterrupt # What else?
500 accumulate_result(test, result)
501 for worker in workers:
502 worker.join()
503 else:
504 for test in tests:
505 if not quiet:
506 print(test)
507 sys.stdout.flush()
508 if trace:
509 # If we're tracing code coverage, then we don't exit with status
510 # if on a false return value from main.
511 tracer.runctx('runtest(test, verbose, quiet, testdir)',
512 globals=globals(), locals=vars())
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000513 else:
Antoine Pitrou88909542009-06-29 13:54:42 +0000514 try:
515 result = runtest(test, verbose, quiet,
516 testdir, huntrleaks, debug)
517 accumulate_result(test, result)
518 except KeyboardInterrupt:
519 # print a newline separate from the ^C
520 print()
521 break
522 except:
523 raise
524 if findleaks:
525 gc.collect()
526 if gc.garbage:
527 print("Warning: test created", len(gc.garbage), end=' ')
528 print("uncollectable object(s).")
529 # move the uncollectable objects somewhere so we don't see
530 # them again
531 found_garbage.extend(gc.garbage)
532 del gc.garbage[:]
533 # Unload the newly imported modules (best effort finalization)
534 for module in sys.modules.keys():
535 if module not in save_modules and module.startswith("test."):
536 support.unload(module)
Jeremy Hylton7a1ea0e2001-10-17 13:45:28 +0000537
538 # The lists won't be sorted if running with -r
539 good.sort()
540 bad.sort()
541 skipped.sort()
Nick Coghlan6ead5522009-10-18 13:19:33 +0000542 environment_changed.sort()
Tim Peterse0c446b2001-10-18 21:57:37 +0000543
Guido van Rossum152494a1996-12-20 03:12:20 +0000544 if good and not quiet:
Guido van Rossum41360a41998-03-26 19:42:58 +0000545 if not bad and not skipped and len(good) > 1:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000546 print("All", end=' ')
547 print(count(len(good), "test"), "OK.")
Christian Heimesb186d002008-03-18 15:15:01 +0000548 if print_slow:
549 test_times.sort(reverse=True)
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000550 print("10 slowest tests:")
Christian Heimesb186d002008-03-18 15:15:01 +0000551 for time, test in test_times[:10]:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000552 print("%s: %.1fs" % (test, time))
Guido van Rossum152494a1996-12-20 03:12:20 +0000553 if bad:
Nick Coghlan6ead5522009-10-18 13:19:33 +0000554 bad = sorted(set(bad) - set(environment_changed))
555 if bad:
556 print(count(len(bad), "test"), "failed:")
557 printlist(bad)
558 if environment_changed:
559 print("{} altered the execution environment:".format(
560 count(len(environment_changed), "test")))
561 printlist(environment_changed)
Guido van Rossum152494a1996-12-20 03:12:20 +0000562 if skipped and not quiet:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000563 print(count(len(skipped), "test"), "skipped:")
Tim Petersa45da922001-08-12 03:45:50 +0000564 printlist(skipped)
Barry Warsawe11e3de1999-01-28 19:51:51 +0000565
Tim Petersb5b7b782001-08-12 01:20:39 +0000566 e = _ExpectedSkips()
Tim Petersa2be2d62001-08-12 02:01:09 +0000567 plat = sys.platform
Tim Petersb5b7b782001-08-12 01:20:39 +0000568 if e.isvalid():
Raymond Hettingera690a992003-11-16 16:17:49 +0000569 surprise = set(skipped) - e.getexpected() - set(resource_denieds)
Tim Petersb5b7b782001-08-12 01:20:39 +0000570 if surprise:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000571 print(count(len(surprise), "skip"), \
572 "unexpected on", plat + ":")
Tim Petersa45da922001-08-12 03:45:50 +0000573 printlist(surprise)
Tim Petersb5b7b782001-08-12 01:20:39 +0000574 else:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000575 print("Those skips are all expected on", plat + ".")
Tim Petersb5b7b782001-08-12 01:20:39 +0000576 else:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000577 print("Ask someone to teach regrtest.py about which tests are")
578 print("expected to get skipped on", plat + ".")
Tim Petersb5b7b782001-08-12 01:20:39 +0000579
Martin v. Löwis04824ce2006-03-10 21:26:16 +0000580 if verbose2 and bad:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000581 print("Re-running failed tests in verbose mode")
Martin v. Löwis04824ce2006-03-10 21:26:16 +0000582 for test in bad:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000583 print("Re-running test %r in verbose mode" % test)
Tim Peters922dd7d2006-03-10 23:37:10 +0000584 sys.stdout.flush()
Martin v. Löwis04824ce2006-03-10 21:26:16 +0000585 try:
Antoine Pitrou88909542009-06-29 13:54:42 +0000586 verbose = True
587 ok = runtest(test, True, quiet, testdir,
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000588 huntrleaks, debug)
Martin v. Löwis04824ce2006-03-10 21:26:16 +0000589 except KeyboardInterrupt:
590 # print a newline separate from the ^C
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000591 print()
Martin v. Löwis04824ce2006-03-10 21:26:16 +0000592 break
593 except:
594 raise
595
Barry Warsawe11e3de1999-01-28 19:51:51 +0000596 if single:
597 alltests = findtests(testdir, stdtests, nottests)
598 for i in range(len(alltests)):
599 if tests[0] == alltests[i]:
600 if i == len(alltests) - 1:
601 os.unlink(filename)
602 else:
603 fp = open(filename, 'w')
604 fp.write(alltests[i+1] + '\n')
605 fp.close()
606 break
607 else:
608 os.unlink(filename)
609
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000610 if trace:
611 r = tracer.results()
612 r.write_results(show_missing=True, summary=True, coverdir=coverdir)
613
Skip Montanaro0179a182004-06-06 15:53:18 +0000614 if runleaks:
615 os.system("leaks %d" % os.getpid())
616
Tim Peters5943b4a2003-07-23 00:30:39 +0000617 sys.exit(len(bad) > 0)
Barry Warsaw08fca522001-08-20 22:33:46 +0000618
Guido van Rossum152494a1996-12-20 03:12:20 +0000619
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000620STDTESTS = [
Guido van Rossum152494a1996-12-20 03:12:20 +0000621 'test_grammar',
622 'test_opcodes',
Guido van Rossumd8faa362007-04-27 19:54:29 +0000623 'test_dict',
Guido van Rossum152494a1996-12-20 03:12:20 +0000624 'test_builtin',
625 'test_exceptions',
626 'test_types',
Collin Winter7afaa882007-03-08 19:54:43 +0000627 'test_unittest',
628 'test_doctest',
629 'test_doctest2',
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000630]
Guido van Rossum152494a1996-12-20 03:12:20 +0000631
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000632NOTTESTS = {
Jeremy Hylton62e2c7e2001-02-28 17:48:06 +0000633 'test_future1',
634 'test_future2',
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000635}
Guido van Rossum152494a1996-12-20 03:12:20 +0000636
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000637def findtests(testdir=None, stdtests=STDTESTS, nottests=NOTTESTS):
Guido van Rossum152494a1996-12-20 03:12:20 +0000638 """Return a list of all applicable test modules."""
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000639 if not testdir: testdir = findtestdir()
Guido van Rossum152494a1996-12-20 03:12:20 +0000640 names = os.listdir(testdir)
641 tests = []
642 for name in names:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000643 if name[:5] == "test_" and name[-3:] == ".py":
Guido van Rossum41360a41998-03-26 19:42:58 +0000644 modname = name[:-3]
645 if modname not in stdtests and modname not in nottests:
646 tests.append(modname)
Guido van Rossum152494a1996-12-20 03:12:20 +0000647 tests.sort()
648 return stdtests + tests
649
Antoine Pitrou88909542009-06-29 13:54:42 +0000650def runtest(test, verbose, quiet,
651 testdir=None, huntrleaks=False, debug=False, use_resources=None):
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000652 """Run a single test.
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000653
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000654 test -- the name of the test
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000655 verbose -- if true, print more messages
Trent Mickf29f47b2000-08-11 19:02:59 +0000656 quiet -- if true, don't print 'skipped' messages (probably redundant)
Christian Heimesb186d002008-03-18 15:15:01 +0000657 test_times -- a list of (time, test_name) pairs
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000658 testdir -- test directory
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000659 huntrleaks -- run multiple times to test for leaks; requires a debug
660 build; a triple corresponding to -R's three arguments
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000661 debug -- if true, print tracebacks for failed tests regardless of
662 verbose setting
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000663 Return:
Nick Coghlan6ead5522009-10-18 13:19:33 +0000664 -4 KeyboardInterrupt when run under -j
665 -3 test skipped because resource denied
666 -2 test skipped for some other reason
667 -1 test failed because it changed the execution environment
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000668 0 test failed
669 1 test passed
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000670 """
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000671
Antoine Pitrou88909542009-06-29 13:54:42 +0000672 support.verbose = verbose # Tell tests to be moderately quiet
673 if use_resources is not None:
674 support.use_resources = use_resources
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000675 try:
Antoine Pitrou88909542009-06-29 13:54:42 +0000676 return runtest_inner(test, verbose, quiet,
677 testdir, huntrleaks, debug)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000678 finally:
679 cleanup_test_droppings(test, verbose)
680
Nick Coghlan6ead5522009-10-18 13:19:33 +0000681# Unit tests are supposed to leave the execution environment unchanged
682# once they complete. But sometimes tests have bugs, especially when
683# tests fail, and the changes to environment go on to mess up other
684# tests. This can cause issues with buildbot stability, since tests
685# are run in random order and so problems may appear to come and go.
686# There are a few things we can save and restore to mitigate this, and
687# the following context manager handles this task.
688
689class saved_test_environment:
690 """Save bits of the test environment and restore them at block exit.
691
692 with saved_test_environment(testname, verbose, quiet):
693 #stuff
694
695 Unless quiet is True, a warning is printed to stderr if any of
696 the saved items was changed by the test. The attribute 'changed'
697 is initially False, but is set to True if a change is detected.
698
699 If verbose is more than 1, the before and after state of changed
700 items is also printed.
701 """
702
703 changed = False
704
705 def __init__(self, testname, verbose=0, quiet=False):
706 self.testname = testname
707 self.verbose = verbose
708 self.quiet = quiet
709
710 # To add things to save and restore, add a name XXX to the resources list
711 # and add corresponding get_XXX/restore_XXX functions. get_XXX should
712 # return the value to be saved and compared against a second call to the
713 # get function when test execution completes. restore_XXX should accept
714 # the saved value and restore the resource using it. It will be called if
715 # and only if a change in the value is detected.
716 #
717 # Note: XXX will have any '.' replaced with '_' characters when determining
718 # the corresponding method names.
719
720 resources = ('sys.argv', 'cwd', 'sys.stdin', 'sys.stdout', 'sys.stderr',
721 'os.environ', 'sys.path')
722
723 def get_sys_argv(self):
724 return id(sys.argv), sys.argv, sys.argv[:]
725 def restore_sys_argv(self, saved_argv):
726 sys.argv = saved_argv[1]
727 sys.argv[:] = saved_argv[2]
728
729 def get_cwd(self):
730 return os.getcwd()
731 def restore_cwd(self, saved_cwd):
732 os.chdir(saved_cwd)
733
734 def get_sys_stdout(self):
735 return sys.stdout
736 def restore_sys_stdout(self, saved_stdout):
737 sys.stdout = saved_stdout
738
739 def get_sys_stderr(self):
740 return sys.stderr
741 def restore_sys_stderr(self, saved_stderr):
742 sys.stderr = saved_stderr
743
744 def get_sys_stdin(self):
745 return sys.stdin
746 def restore_sys_stdin(self, saved_stdin):
747 sys.stdin = saved_stdin
748
749 def get_os_environ(self):
750 return id(os.environ), os.environ, dict(os.environ)
751 def restore_os_environ(self, saved_environ):
752 os.environ = saved_environ[1]
753 os.environ.clear()
754 os.environ.update(saved_environ[2])
755
756 def get_sys_path(self):
757 return id(sys.path), sys.path, sys.path[:]
758 def restore_sys_path(self, saved_path):
759 sys.path = saved_path[1]
760 sys.path[:] = saved_path[2]
761
762 def resource_info(self):
763 for name in self.resources:
764 method_suffix = name.replace('.', '_')
765 get_name = 'get_' + method_suffix
766 restore_name = 'restore_' + method_suffix
767 yield name, getattr(self, get_name), getattr(self, restore_name)
768
769 def __enter__(self):
770 self.saved_values = dict((name, get()) for name, get, restore
771 in self.resource_info())
772 return self
773
774 def __exit__(self, exc_type, exc_val, exc_tb):
775 for name, get, restore in self.resource_info():
776 current = get()
777 original = self.saved_values[name]
778 # Check for changes to the resource's value
779 if current != original:
780 self.changed = True
781 restore(original)
782 if not self.quiet:
783 print("Warning -- {} was modified by {}".format(
784 name, self.testname),
785 file=sys.stderr)
786 if self.verbose > 1:
787 print(" Before: {}\n After: {} ".format(
788 original, current),
789 file=sys.stderr)
790 return False
791
792
Antoine Pitrou88909542009-06-29 13:54:42 +0000793def runtest_inner(test, verbose, quiet,
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000794 testdir=None, huntrleaks=False, debug=False):
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000795 support.unload(test)
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000796 if not testdir:
797 testdir = findtestdir()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000798
Antoine Pitrou88909542009-06-29 13:54:42 +0000799 test_time = 0.0
Collin Wintera5503d52009-05-15 01:20:21 +0000800 refleak = False # True if the test leaked references.
Guido van Rossum152494a1996-12-20 03:12:20 +0000801 try:
R. David Murray0bc11ae2009-10-18 22:18:17 +0000802 if test.startswith('test.'):
803 abstest = test
804 else:
805 # Always import it from the test package
806 abstest = 'test.' + test
807 with saved_test_environment(test, verbose, quiet) as environment:
808 start_time = time.time()
809 the_package = __import__(abstest, globals(), locals(), [])
810 the_module = getattr(the_package, test)
811 # Old tests run to completion simply as a side-effect of
812 # being imported. For tests based on unittest or doctest,
813 # explicitly invoke their test_main() function (if it exists).
814 indirect_test = getattr(the_module, "test_main", None)
815 if indirect_test is not None:
816 indirect_test()
817 if huntrleaks:
818 refleak = dash_R(the_module, test, indirect_test,
819 huntrleaks)
820 test_time = time.time() - start_time
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000821 except support.ResourceDenied as msg:
Fred Drake9a0db072003-02-03 15:19:30 +0000822 if not quiet:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000823 print(test, "skipped --", msg)
Fred Drake9a0db072003-02-03 15:19:30 +0000824 sys.stdout.flush()
Nick Coghlan6ead5522009-10-18 13:19:33 +0000825 return -3, test_time
R. David Murraya21e4ca2009-03-31 23:16:50 +0000826 except unittest.SkipTest as msg:
Trent Mickf29f47b2000-08-11 19:02:59 +0000827 if not quiet:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000828 print(test, "skipped --", msg)
Guido van Rossum3cda93e2002-09-13 21:28:03 +0000829 sys.stdout.flush()
Nick Coghlan6ead5522009-10-18 13:19:33 +0000830 return -2, test_time
Fred Drakefe5c22a2000-08-18 16:04:05 +0000831 except KeyboardInterrupt:
832 raise
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000833 except support.TestFailed as msg:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000834 print("test", test, "failed --", msg)
Guido van Rossum3cda93e2002-09-13 21:28:03 +0000835 sys.stdout.flush()
Antoine Pitrou88909542009-06-29 13:54:42 +0000836 return 0, test_time
Guido van Rossum9e48b271997-07-16 01:56:13 +0000837 except:
Guido van Rossum41360a41998-03-26 19:42:58 +0000838 type, value = sys.exc_info()[:2]
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000839 print("test", test, "crashed --", str(type) + ":", value)
Guido van Rossum3cda93e2002-09-13 21:28:03 +0000840 sys.stdout.flush()
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000841 if verbose or debug:
Guido van Rossum41360a41998-03-26 19:42:58 +0000842 traceback.print_exc(file=sys.stdout)
Guido van Rossum3cda93e2002-09-13 21:28:03 +0000843 sys.stdout.flush()
Antoine Pitrou88909542009-06-29 13:54:42 +0000844 return 0, test_time
Guido van Rossum152494a1996-12-20 03:12:20 +0000845 else:
Collin Wintera5503d52009-05-15 01:20:21 +0000846 if refleak:
Antoine Pitrou88909542009-06-29 13:54:42 +0000847 return 0, test_time
Nick Coghlan6ead5522009-10-18 13:19:33 +0000848 if environment.changed:
849 return -1, test_time
Antoine Pitrou88909542009-06-29 13:54:42 +0000850 return 1, test_time
Guido van Rossum0fcca4e2001-09-21 20:31:52 +0000851
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000852def cleanup_test_droppings(testname, verbose):
853 import shutil
Benjamin Peterson25c95f12009-05-08 20:42:26 +0000854 import stat
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000855
856 # Try to clean up junk commonly left behind. While tests shouldn't leave
857 # any files or directories behind, when a test fails that can be tedious
858 # for it to arrange. The consequences can be especially nasty on Windows,
859 # since if a test leaves a file open, it cannot be deleted by name (while
860 # there's nothing we can do about that here either, we can display the
861 # name of the offending test, which is a real help).
Benjamin Petersonee8712c2008-05-20 21:35:26 +0000862 for name in (support.TESTFN,
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000863 "db_home",
864 ):
865 if not os.path.exists(name):
866 continue
867
868 if os.path.isdir(name):
869 kind, nuker = "directory", shutil.rmtree
870 elif os.path.isfile(name):
871 kind, nuker = "file", os.unlink
872 else:
873 raise SystemError("os.path says %r exists but is neither "
874 "directory nor file" % name)
875
876 if verbose:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000877 print("%r left behind %s %r" % (testname, kind, name))
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000878 try:
Benjamin Peterson25c95f12009-05-08 20:42:26 +0000879 # if we have chmod, fix possible permissions problems
880 # that might prevent cleanup
881 if (hasattr(os, 'chmod')):
882 os.chmod(name, stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000883 nuker(name)
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000884 except Exception as msg:
885 print(("%r left behind %s %r and it couldn't be "
886 "removed: %s" % (testname, kind, name, msg)), file=sys.stderr)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000887
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000888def dash_R(the_module, test, indirect_test, huntrleaks):
Collin Wintera5503d52009-05-15 01:20:21 +0000889 """Run a test multiple times, looking for reference leaks.
890
891 Returns:
892 False if the test didn't leak references; True if we detected refleaks.
893 """
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000894 # This code is hackish and inelegant, but it seems to do the job.
Alexandre Vassalottif7fa63d2008-05-11 08:55:36 +0000895 import copyreg, _abcoll
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000896
897 if not hasattr(sys, 'gettotalrefcount'):
898 raise Exception("Tracking reference leaks requires a debug build "
899 "of Python")
900
901 # Save current values for dash_R_cleanup() to restore.
902 fs = warnings.filters[:]
Alexandre Vassalottif7fa63d2008-05-11 08:55:36 +0000903 ps = copyreg.dispatch_table.copy()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000904 pic = sys.path_importer_cache.copy()
Christian Heimes93852662007-12-01 12:22:32 +0000905 abcs = {}
906 for abc in [getattr(_abcoll, a) for a in _abcoll.__all__]:
Christian Heimesbe5b30b2008-03-03 19:18:51 +0000907 if not isabstract(abc):
Christian Heimes93852662007-12-01 12:22:32 +0000908 continue
909 for obj in abc.__subclasses__() + [abc]:
910 abcs[obj] = obj._abc_registry.copy()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000911
912 if indirect_test:
913 def run_the_test():
914 indirect_test()
915 else:
916 def run_the_test():
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000917 del sys.modules[the_module.__name__]
918 exec('import ' + the_module.__name__)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000919
920 deltas = []
921 nwarmup, ntracked, fname = huntrleaks
922 repcount = nwarmup + ntracked
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000923 print("beginning", repcount, "repetitions", file=sys.stderr)
924 print(("1234567890"*(repcount//10 + 1))[:repcount], file=sys.stderr)
Antoine Pitrou88909542009-06-29 13:54:42 +0000925 sys.stderr.flush()
Guido van Rossum3de862d2007-08-18 00:10:33 +0000926 dash_R_cleanup(fs, ps, pic, abcs)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000927 for i in range(repcount):
928 rc = sys.gettotalrefcount()
929 run_the_test()
930 sys.stderr.write('.')
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000931 sys.stderr.flush()
Guido van Rossum3de862d2007-08-18 00:10:33 +0000932 dash_R_cleanup(fs, ps, pic, abcs)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000933 if i >= nwarmup:
934 deltas.append(sys.gettotalrefcount() - rc - 2)
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000935 print(file=sys.stderr)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000936 if any(deltas):
Guido van Rossum360e4b82007-05-14 22:51:27 +0000937 msg = '%s leaked %s references, sum=%s' % (test, deltas, sum(deltas))
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000938 print(msg, file=sys.stderr)
Antoine Pitrou88909542009-06-29 13:54:42 +0000939 sys.stderr.flush()
940 with open(fname, "a") as refrep:
941 print(msg, file=refrep)
942 refrep.flush()
Collin Wintera5503d52009-05-15 01:20:21 +0000943 return True
944 return False
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000945
Guido van Rossum3de862d2007-08-18 00:10:33 +0000946def dash_R_cleanup(fs, ps, pic, abcs):
Alexandre Vassalottif7fa63d2008-05-11 08:55:36 +0000947 import gc, copyreg
Brett Cannonf4fd9932008-05-10 21:11:46 +0000948 import _strptime, linecache
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000949 import urllib.parse, urllib.request, mimetypes, doctest
Guido van Rossum7eaf8222007-06-18 17:58:50 +0000950 import struct, filecmp, _abcoll
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000951 from distutils.dir_util import _path_created
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000952 from weakref import WeakSet
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000953
Christian Heimesdae2a892008-04-19 00:55:37 +0000954 # Clear the warnings registry, so they can be displayed again
955 for mod in sys.modules.values():
956 if hasattr(mod, '__warningregistry__'):
957 del mod.__warningregistry__
958
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000959 # Restore some original values.
960 warnings.filters[:] = fs
Alexandre Vassalottif7fa63d2008-05-11 08:55:36 +0000961 copyreg.dispatch_table.clear()
962 copyreg.dispatch_table.update(ps)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000963 sys.path_importer_cache.clear()
964 sys.path_importer_cache.update(pic)
965
Christian Heimes26855632008-01-27 23:50:43 +0000966 # clear type cache
Christian Heimes15ebc882008-02-04 18:48:49 +0000967 sys._clear_type_cache()
Christian Heimes26855632008-01-27 23:50:43 +0000968
Guido van Rossum3de862d2007-08-18 00:10:33 +0000969 # Clear ABC registries, restoring previously saved ABC registries.
Guido van Rossum7eaf8222007-06-18 17:58:50 +0000970 for abc in [getattr(_abcoll, a) for a in _abcoll.__all__]:
Christian Heimesbe5b30b2008-03-03 19:18:51 +0000971 if not isabstract(abc):
Christian Heimes941973a2007-11-30 21:53:03 +0000972 continue
Guido van Rossum7eaf8222007-06-18 17:58:50 +0000973 for obj in abc.__subclasses__() + [abc]:
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000974 obj._abc_registry = abcs.get(obj, WeakSet()).copy()
Guido van Rossumc1e315d2007-08-20 19:29:24 +0000975 obj._abc_cache.clear()
976 obj._abc_negative_cache.clear()
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000977
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000978 # Clear assorted module caches.
979 _path_created.clear()
980 re.purge()
981 _strptime._regex_cache.clear()
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000982 urllib.parse.clear_cache()
983 urllib.request.urlcleanup()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000984 linecache.clearcache()
985 mimetypes._default_mime_types()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000986 filecmp._cache.clear()
Christian Heimesa34706f2008-01-04 03:06:10 +0000987 struct._clearcache()
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000988 doctest.master = None
989
990 # Collect cyclic trash.
991 gc.collect()
992
Neal Norwitz94fa2ee2008-03-31 02:55:15 +0000993def warm_char_cache():
994 s = bytes(range(256))
995 for i in range(256):
996 s[i:i+1]
997
Guido van Rossum152494a1996-12-20 03:12:20 +0000998def findtestdir():
999 if __name__ == '__main__':
Guido van Rossum41360a41998-03-26 19:42:58 +00001000 file = sys.argv[0]
Guido van Rossum152494a1996-12-20 03:12:20 +00001001 else:
Guido van Rossum41360a41998-03-26 19:42:58 +00001002 file = __file__
Guido van Rossum152494a1996-12-20 03:12:20 +00001003 testdir = os.path.dirname(file) or os.curdir
1004 return testdir
1005
Tim Petersc5000df2002-06-02 21:42:01 +00001006def removepy(name):
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001007 if name.endswith(".py"):
Tim Petersc5000df2002-06-02 21:42:01 +00001008 name = name[:-3]
1009 return name
1010
Guido van Rossum152494a1996-12-20 03:12:20 +00001011def count(n, word):
1012 if n == 1:
Guido van Rossum41360a41998-03-26 19:42:58 +00001013 return "%d %s" % (n, word)
Guido van Rossum152494a1996-12-20 03:12:20 +00001014 else:
Guido van Rossum41360a41998-03-26 19:42:58 +00001015 return "%d %ss" % (n, word)
Guido van Rossum152494a1996-12-20 03:12:20 +00001016
Tim Petersa45da922001-08-12 03:45:50 +00001017def printlist(x, width=70, indent=4):
Tim Peters7c7efe92002-08-23 17:55:54 +00001018 """Print the elements of iterable x to stdout.
Tim Petersa45da922001-08-12 03:45:50 +00001019
1020 Optional arg width (default 70) is the maximum line length.
1021 Optional arg indent (default 4) is the number of blanks with which to
1022 begin each line.
1023 """
1024
Tim Petersba78bc42002-07-04 19:45:06 +00001025 from textwrap import fill
1026 blanks = ' ' * indent
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001027 print(fill(' '.join(map(str, x)), width,
1028 initial_indent=blanks, subsequent_indent=blanks))
Tim Petersa45da922001-08-12 03:45:50 +00001029
Tim Petersde14a302002-04-01 05:04:46 +00001030# Map sys.platform to a string containing the basenames of tests
1031# expected to be skipped on that platform.
Tim Peters2a182db2002-10-09 01:07:11 +00001032#
1033# Special cases:
1034# test_pep277
1035# The _ExpectedSkips constructor adds this to the set of expected
1036# skips if not os.path.supports_unicode_filenames.
Neal Norwitz55b61d22003-02-28 19:57:03 +00001037# test_timeout
1038# Controlled by test_timeout.skip_expected. Requires the network
1039# resource and a socket module.
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001040#
1041# Tests that are expected to be skipped everywhere except on one platform
1042# are also handled separately.
Tim Petersde14a302002-04-01 05:04:46 +00001043
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001044_expectations = {
1045 'win32':
1046 """
Tim Petersc7c516a2003-09-20 22:06:13 +00001047 test__locale
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001048 test_crypt
Tim Petersd7030572001-10-22 22:06:08 +00001049 test_curses
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001050 test_dbm
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001051 test_fcntl
1052 test_fork1
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001053 test_epoll
Benjamin Peterson4d480532008-05-26 19:08:31 +00001054 test_dbm_gnu
Kristján Valur Jónsson42a40c52009-04-01 11:28:47 +00001055 test_dbm_ndbm
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001056 test_grp
Tim Petersfd8e6e52003-03-04 00:26:38 +00001057 test_ioctl
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001058 test_largefile
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001059 test_kqueue
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001060 test_openpty
Tim Petersefc4b122002-12-10 18:47:56 +00001061 test_ossaudiodev
Thomas Wouters47b49bf2007-08-30 22:15:33 +00001062 test_pipes
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001063 test_poll
Tim Peters003eb302003-02-17 21:48:48 +00001064 test_posix
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001065 test_pty
1066 test_pwd
Tim Peters1e33ffa2002-04-23 23:09:02 +00001067 test_resource
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001068 test_signal
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001069 test_syslog
Tim Peterscea2cc42004-08-04 02:32:03 +00001070 test_threadsignals
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001071 test_wait3
1072 test_wait4
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001073 """,
1074 'linux2':
1075 """
Guido van Rossumf66dacd2001-10-23 15:10:55 +00001076 test_curses
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001077 test_largefile
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001078 test_kqueue
Guido van Rossum4507ec72003-02-14 19:29:22 +00001079 test_ossaudiodev
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001080 """,
Jack Jansen49a806e2001-08-28 14:49:00 +00001081 'mac':
Guido van Rossumaa782362001-09-02 03:58:41 +00001082 """
Jack Jansen67975142003-01-08 16:31:11 +00001083 test_atexit
Jack Jansen67975142003-01-08 16:31:11 +00001084 test_bz2
Guido van Rossumaa782362001-09-02 03:58:41 +00001085 test_crypt
Jack Jansenb3be2162001-11-30 14:16:36 +00001086 test_curses
Guido van Rossumaa782362001-09-02 03:58:41 +00001087 test_dbm
Guido van Rossumaa782362001-09-02 03:58:41 +00001088 test_fcntl
1089 test_fork1
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001090 test_epoll
Guido van Rossumaa782362001-09-02 03:58:41 +00001091 test_grp
Jack Jansenc4d6bdd2003-03-07 15:38:11 +00001092 test_ioctl
Guido van Rossumaa782362001-09-02 03:58:41 +00001093 test_largefile
Guido van Rossumaa782362001-09-02 03:58:41 +00001094 test_locale
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001095 test_kqueue
Guido van Rossumaa782362001-09-02 03:58:41 +00001096 test_mmap
Guido van Rossumaa782362001-09-02 03:58:41 +00001097 test_openpty
Jack Jansen67975142003-01-08 16:31:11 +00001098 test_ossaudiodev
Guido van Rossumaa782362001-09-02 03:58:41 +00001099 test_poll
Jack Jansen67975142003-01-08 16:31:11 +00001100 test_popen
Jack Jansen5bb97e62003-02-21 22:33:55 +00001101 test_posix
Guido van Rossumaa782362001-09-02 03:58:41 +00001102 test_pty
1103 test_pwd
Jack Jansen67975142003-01-08 16:31:11 +00001104 test_resource
Guido van Rossumaa782362001-09-02 03:58:41 +00001105 test_signal
Guido van Rossumaa782362001-09-02 03:58:41 +00001106 test_sundry
Jack Jansenc4d6bdd2003-03-07 15:38:11 +00001107 test_tarfile
Guido van Rossumaa782362001-09-02 03:58:41 +00001108 """,
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001109 'unixware7':
Martin v. Löwis0ace3262001-09-05 14:38:48 +00001110 """
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001111 test_epoll
Martin v. Löwis0ace3262001-09-05 14:38:48 +00001112 test_largefile
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001113 test_kqueue
Martin v. Löwis0ace3262001-09-05 14:38:48 +00001114 test_minidom
Martin v. Löwis0ace3262001-09-05 14:38:48 +00001115 test_openpty
1116 test_pyexpat
1117 test_sax
Martin v. Löwis0ace3262001-09-05 14:38:48 +00001118 test_sundry
Martin v. Löwis0ace3262001-09-05 14:38:48 +00001119 """,
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001120 'openunix8':
1121 """
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001122 test_epoll
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001123 test_largefile
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001124 test_kqueue
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001125 test_minidom
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001126 test_openpty
1127 test_pyexpat
1128 test_sax
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001129 test_sundry
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001130 """,
1131 'sco_sv3':
1132 """
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001133 test_asynchat
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001134 test_fork1
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001135 test_epoll
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001136 test_gettext
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001137 test_largefile
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001138 test_locale
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001139 test_kqueue
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001140 test_minidom
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001141 test_openpty
1142 test_pyexpat
1143 test_queue
1144 test_sax
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001145 test_sundry
1146 test_thread
1147 test_threaded_import
1148 test_threadedtempfile
1149 test_threading
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001150 """,
Jack Jansen8a97f4a2001-12-05 23:27:32 +00001151 'darwin':
Jack Jansen398c2362001-12-02 21:41:36 +00001152 """
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001153 test__locale
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001154 test_curses
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001155 test_epoll
Benjamin Peterson4d480532008-05-26 19:08:31 +00001156 test_dbm_gnu
Jack Jansen398c2362001-12-02 21:41:36 +00001157 test_largefile
Jack Jansenacda3392002-12-30 23:03:13 +00001158 test_locale
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001159 test_minidom
Jack Jansenacda3392002-12-30 23:03:13 +00001160 test_ossaudiodev
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001161 test_poll
Jack Jansen398c2362001-12-02 21:41:36 +00001162 """,
Guido van Rossum11c3f092002-07-17 15:08:24 +00001163 'sunos5':
1164 """
Guido van Rossum11c3f092002-07-17 15:08:24 +00001165 test_curses
1166 test_dbm
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001167 test_epoll
1168 test_kqueue
Benjamin Peterson4d480532008-05-26 19:08:31 +00001169 test_dbm_gnu
Guido van Rossum11c3f092002-07-17 15:08:24 +00001170 test_gzip
Guido van Rossum11c3f092002-07-17 15:08:24 +00001171 test_openpty
Guido van Rossum11c3f092002-07-17 15:08:24 +00001172 test_zipfile
1173 test_zlib
Jeremy Hyltoned375e12002-07-17 15:56:55 +00001174 """,
Skip Montanarob3230212002-03-15 02:54:03 +00001175 'hp-ux11':
1176 """
Skip Montanarob3230212002-03-15 02:54:03 +00001177 test_curses
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001178 test_epoll
Benjamin Peterson4d480532008-05-26 19:08:31 +00001179 test_dbm_gnu
Skip Montanarob3230212002-03-15 02:54:03 +00001180 test_gzip
Skip Montanarob3230212002-03-15 02:54:03 +00001181 test_largefile
Skip Montanarob3230212002-03-15 02:54:03 +00001182 test_locale
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001183 test_kqueue
Skip Montanarob3230212002-03-15 02:54:03 +00001184 test_minidom
Skip Montanarob3230212002-03-15 02:54:03 +00001185 test_openpty
1186 test_pyexpat
1187 test_sax
Skip Montanarob3230212002-03-15 02:54:03 +00001188 test_zipfile
1189 test_zlib
1190 """,
Jason Tishler25115942002-12-05 15:18:15 +00001191 'cygwin':
1192 """
Jason Tishler25115942002-12-05 15:18:15 +00001193 test_curses
1194 test_dbm
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001195 test_epoll
Jason Tishlerc23f39c2003-07-22 18:35:58 +00001196 test_ioctl
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001197 test_kqueue
Jason Tishler25115942002-12-05 15:18:15 +00001198 test_largefile
Jason Tishler25115942002-12-05 15:18:15 +00001199 test_locale
Jason Tishler5c4ded22003-02-05 16:46:01 +00001200 test_ossaudiodev
Jason Tishler25115942002-12-05 15:18:15 +00001201 test_socketserver
Jason Tishler25115942002-12-05 15:18:15 +00001202 """,
Andrew MacIntyrefd07e7d2002-12-31 11:26:50 +00001203 'os2emx':
1204 """
Andrew MacIntyrefd07e7d2002-12-31 11:26:50 +00001205 test_audioop
Andrew MacIntyrefd07e7d2002-12-31 11:26:50 +00001206 test_curses
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001207 test_epoll
1208 test_kqueue
Andrew MacIntyrefd07e7d2002-12-31 11:26:50 +00001209 test_largefile
Andrew MacIntyrefd07e7d2002-12-31 11:26:50 +00001210 test_mmap
Andrew MacIntyrefd07e7d2002-12-31 11:26:50 +00001211 test_openpty
1212 test_ossaudiodev
1213 test_pty
1214 test_resource
1215 test_signal
Andrew MacIntyrefd07e7d2002-12-31 11:26:50 +00001216 """,
Guido van Rossum944a6c32003-11-20 22:11:29 +00001217 'freebsd4':
1218 """
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001219 test_epoll
Benjamin Peterson4d480532008-05-26 19:08:31 +00001220 test_dbm_gnu
Guido van Rossum944a6c32003-11-20 22:11:29 +00001221 test_locale
Guido van Rossum944a6c32003-11-20 22:11:29 +00001222 test_ossaudiodev
1223 test_pep277
Hye-Shik Changf64700a2004-08-18 15:13:41 +00001224 test_pty
Guido van Rossum944a6c32003-11-20 22:11:29 +00001225 test_socketserver
Hye-Shik Changf64700a2004-08-18 15:13:41 +00001226 test_tcl
Guilherme Poloa91790a2009-02-09 20:40:42 +00001227 test_tk
Guilherme Polo9de29af2009-01-28 20:40:48 +00001228 test_ttk_guionly
1229 test_ttk_textonly
Guido van Rossum944a6c32003-11-20 22:11:29 +00001230 test_timeout
Guido van Rossum944a6c32003-11-20 22:11:29 +00001231 test_urllibnet
Benjamin Petersone5384b02008-10-04 22:00:42 +00001232 test_multiprocessing
Martin v. Löwis56f88112003-06-07 20:01:37 +00001233 """,
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +00001234 'aix5':
1235 """
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +00001236 test_bz2
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001237 test_epoll
Benjamin Peterson4d480532008-05-26 19:08:31 +00001238 test_dbm_gnu
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +00001239 test_gzip
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001240 test_kqueue
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +00001241 test_ossaudiodev
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +00001242 test_tcl
Guilherme Poloa91790a2009-02-09 20:40:42 +00001243 test_tk
Guilherme Polo9de29af2009-01-28 20:40:48 +00001244 test_ttk_guionly
1245 test_ttk_textonly
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +00001246 test_zipimport
1247 test_zlib
1248 """,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001249 'openbsd3':
1250 """
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001251 test_ctypes
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001252 test_epoll
Benjamin Peterson4d480532008-05-26 19:08:31 +00001253 test_dbm_gnu
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001254 test_locale
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001255 test_normalization
1256 test_ossaudiodev
1257 test_pep277
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001258 test_tcl
Guilherme Poloa91790a2009-02-09 20:40:42 +00001259 test_tk
Guilherme Polo9de29af2009-01-28 20:40:48 +00001260 test_ttk_guionly
1261 test_ttk_textonly
Benjamin Petersone5384b02008-10-04 22:00:42 +00001262 test_multiprocessing
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001263 """,
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001264 'netbsd3':
1265 """
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001266 test_ctypes
1267 test_curses
Christian Heimes4fbc72b2008-03-22 00:47:35 +00001268 test_epoll
Benjamin Peterson4d480532008-05-26 19:08:31 +00001269 test_dbm_gnu
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001270 test_locale
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001271 test_ossaudiodev
1272 test_pep277
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001273 test_tcl
Guilherme Poloa91790a2009-02-09 20:40:42 +00001274 test_tk
Guilherme Polo9de29af2009-01-28 20:40:48 +00001275 test_ttk_guionly
1276 test_ttk_textonly
Benjamin Petersone5384b02008-10-04 22:00:42 +00001277 test_multiprocessing
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001278 """,
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001279}
Martin v. Löwis32d0c1b2004-07-26 12:09:13 +00001280_expectations['freebsd5'] = _expectations['freebsd4']
Hye-Shik Changf64700a2004-08-18 15:13:41 +00001281_expectations['freebsd6'] = _expectations['freebsd4']
Hye-Shik Chang4e422812005-07-17 02:36:59 +00001282_expectations['freebsd7'] = _expectations['freebsd4']
Guido van Rossum8ce8a782007-11-01 19:42:39 +00001283_expectations['freebsd8'] = _expectations['freebsd4']
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001284
Tim Petersb5b7b782001-08-12 01:20:39 +00001285class _ExpectedSkips:
1286 def __init__(self):
Tim Peters2a182db2002-10-09 01:07:11 +00001287 import os.path
Neal Norwitz55b61d22003-02-28 19:57:03 +00001288 from test import test_timeout
Tim Peters1b445d32002-11-24 18:53:11 +00001289
Tim Peters7c7efe92002-08-23 17:55:54 +00001290 self.valid = False
Tim Petersde14a302002-04-01 05:04:46 +00001291 if sys.platform in _expectations:
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001292 s = _expectations[sys.platform]
Raymond Hettingera690a992003-11-16 16:17:49 +00001293 self.expected = set(s.split())
Tim Peters1b445d32002-11-24 18:53:11 +00001294
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001295 # These are broken tests, for now skipped on every platform.
1296 # XXX Fix these!
Benjamin Petersone9ea19e2008-08-19 23:02:38 +00001297 self.expected.add('test_nis')
Benjamin Peterson4fde0c42008-03-31 02:36:22 +00001298
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001299 # expected to be skipped on every platform, even Linux
Tim Peters2a182db2002-10-09 01:07:11 +00001300 if not os.path.supports_unicode_filenames:
1301 self.expected.add('test_pep277')
Tim Peters1b445d32002-11-24 18:53:11 +00001302
Neal Norwitz94fa2ee2008-03-31 02:55:15 +00001303 # doctest, profile and cProfile tests fail when the codec for the
1304 # fs encoding isn't built in because PyUnicode_Decode() adds two
1305 # calls into Python.
1306 encs = ("utf-8", "latin-1", "ascii", "mbcs", "utf-16", "utf-32")
1307 if sys.getfilesystemencoding().lower() not in encs:
1308 self.expected.add('test_profile')
1309 self.expected.add('test_cProfile')
1310 self.expected.add('test_doctest')
Guido van Rossumdaa251c2007-10-25 23:47:33 +00001311
Neal Norwitz55b61d22003-02-28 19:57:03 +00001312 if test_timeout.skip_expected:
1313 self.expected.add('test_timeout')
1314
Tim Petersecd79eb2003-01-29 00:35:32 +00001315 if sys.platform != "win32":
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001316 # test_sqlite is only reliable on Windows where the library
1317 # is distributed with Python
Neal Norwitz7035c982003-03-29 22:01:17 +00001318 WIN_ONLY = ["test_unicode_file", "test_winreg",
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001319 "test_winsound", "test_startfile",
1320 "test_sqlite"]
Neal Norwitz7035c982003-03-29 22:01:17 +00001321 for skip in WIN_ONLY:
1322 self.expected.add(skip)
Tim Petersf2715e02003-02-19 02:35:07 +00001323
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001324 if sys.platform != 'sunos5':
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001325 self.expected.add('test_nis')
Guido van Rossumd59da4b2007-05-22 18:11:13 +00001326
Tim Peters7c7efe92002-08-23 17:55:54 +00001327 self.valid = True
Tim Petersb5b7b782001-08-12 01:20:39 +00001328
1329 def isvalid(self):
1330 "Return true iff _ExpectedSkips knows about the current platform."
1331 return self.valid
1332
1333 def getexpected(self):
1334 """Return set of test names we expect to skip on current platform.
1335
1336 self.isvalid() must be true.
1337 """
1338
1339 assert self.isvalid()
1340 return self.expected
1341
Guido van Rossum152494a1996-12-20 03:12:20 +00001342if __name__ == '__main__':
Barry Warsaw408b6d32002-07-30 23:27:12 +00001343 # Remove regrtest.py's own directory from the module search path. This
1344 # prevents relative imports from working, and relative imports will screw
Benjamin Petersonee8712c2008-05-20 21:35:26 +00001345 # up the testing framework. E.g. if both test.support and
1346 # support are imported, they will not contain the same globals, and
Barry Warsaw408b6d32002-07-30 23:27:12 +00001347 # much of the testing framework relies on the globals in the
Benjamin Petersonee8712c2008-05-20 21:35:26 +00001348 # test.support module.
Barry Warsaw408b6d32002-07-30 23:27:12 +00001349 mydir = os.path.abspath(os.path.normpath(os.path.dirname(sys.argv[0])))
1350 i = pathlen = len(sys.path)
1351 while i >= 0:
1352 i -= 1
1353 if os.path.abspath(os.path.normpath(sys.path[i])) == mydir:
1354 del sys.path[i]
Barry Warsaw08fca522001-08-20 22:33:46 +00001355 main()