blob: 4835e64068d3e594e925d0c1e2bd2a3827cb7095 [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
12-q: quiet -- don't print anything except if a test fails
13-g: generate -- write the output file for a test instead of comparing it
14-x: exclude -- arguments are tests to *exclude*
15-s: single -- run only a single test (see below)
16-r: random -- randomize test execution order
17-f: fromfile -- read names of tests to run from a file (see below)
18-l: findleaks -- if GC is available detect tests that leak memory
19-u: use -- specify which special resource intensive tests to run
20-h: help -- print this text and exit
21-t: threshold -- call gc.set_threshold(N)
22-T: coverage -- turn on code coverage using the trace module
Walter Dörwaldaee4da62004-11-12 18:51:27 +000023-D: coverdir -- Directory where coverage files are put
24-N: nocoverdir -- Put coverage files alongside modules
Michael W. Hudson61147f62004-08-03 11:33:28 +000025-L: runleaks -- run the leaks(1) command just before exit
26-R: huntrleaks -- search for reference leaks (needs debug build, v. slow)
Guido van Rossum152494a1996-12-20 03:12:20 +000027
28If non-option arguments are present, they are names for tests to run,
29unless -x is given, in which case they are names for tests not to run.
30If no test names are given, all tests are run.
Guido van Rossumf58ed251997-03-07 21:04:33 +000031
Guido van Rossuma4122201997-08-18 20:08:24 +000032-v is incompatible with -g and does not compare test output files.
Barry Warsawe11e3de1999-01-28 19:51:51 +000033
Barry Warsaw3b6d0252004-02-07 22:43:03 +000034-T turns on code coverage tracing with the trace module.
35
Walter Dörwaldaee4da62004-11-12 18:51:27 +000036-D specifies the directory where coverage files are put.
37
38-N Put coverage files alongside modules.
39
Guido van Rossum9e9d4f82002-06-07 15:17:03 +000040-s means to run only a single test and exit. This is useful when
41doing memory analysis on the Python interpreter (which tend to consume
42too many resources to run the full regression test non-stop). The
43file /tmp/pynexttest is read to find the next test to run. If this
44file is missing, the first test_*.py file in testdir or on the command
45line is used. (actually tempfile.gettempdir() is used instead of
46/tmp).
Barry Warsawe11e3de1999-01-28 19:51:51 +000047
Guido van Rossum9e9d4f82002-06-07 15:17:03 +000048-f reads the names of tests from the file given as f's argument, one
49or more test names per line. Whitespace is ignored. Blank lines and
50lines beginning with '#' are ignored. This is especially useful for
51whittling down failures involving interactions among tests.
Tim Petersc5000df2002-06-02 21:42:01 +000052
Skip Montanaro0179a182004-06-06 15:53:18 +000053-L causes the leaks(1) command to be run just before exit if it exists.
54leaks(1) is available on Mac OS X and presumably on some other
55FreeBSD-derived systems.
56
Michael W. Hudson61147f62004-08-03 11:33:28 +000057-R runs each test several times and examines sys.gettotalrefcount() to
58see if the test appears to be leaking references. The argument should
59be of the form stab:run:fname where 'stab' is the number of times the
60test is run to let gettotalrefcount settle down, 'run' is the number
61of times further it is run and 'fname' is the name of the file the
62reports are written to. These parameters all have defaults (5, 4 and
63"reflog.txt" respectively), so the minimal invocation is '-R ::'.
64
Guido van Rossum9e9d4f82002-06-07 15:17:03 +000065-u is used to specify which special resource intensive tests to run,
66such as those requiring large file support or network connectivity.
67The argument is a comma-separated list of words indicating the
68resources to test. Currently only the following are defined:
Barry Warsaw08fca522001-08-20 22:33:46 +000069
Fred Drake3a15dac2002-04-11 16:39:16 +000070 all - Enable all special resources.
71
Guido van Rossum315aa362003-03-11 14:46:48 +000072 audio - Tests that use the audio device. (There are known
73 cases of broken audio drivers that can crash Python or
74 even the Linux kernel.)
75
Andrew M. Kuchling2158df02001-10-22 15:26:09 +000076 curses - Tests that use curses and will modify the terminal's
77 state and output modes.
Tim Peters1633a2e2001-10-30 05:56:40 +000078
Guido van Rossum9e9d4f82002-06-07 15:17:03 +000079 largefile - It is okay to run some test that may create huge
80 files. These tests can take a long time and may
81 consume >2GB of disk space temporarily.
Barry Warsaw08fca522001-08-20 22:33:46 +000082
Guido van Rossum9e9d4f82002-06-07 15:17:03 +000083 network - It is okay to run tests that use external network
84 resource, e.g. testing SSL support for sockets.
Martin v. Löwis1c6b1a22002-11-19 17:47:07 +000085
86 bsddb - It is okay to run the bsddb testsuite, which takes
87 a long time to complete.
Fred Drake4dd0f7e2002-11-26 21:44:56 +000088
Raymond Hettinger7c85fa42004-07-01 11:01:35 +000089 decimal - Test the decimal module against a large suite that
90 verifies compliance with standards.
91
Jeremy Hylton4336eda2004-08-07 19:25:33 +000092 compiler - Test the compiler package by compiling all the source
93 in the standard library and test suite. This takes
94 a long time.
95
Fred Drake4dd0f7e2002-11-26 21:44:56 +000096To enable all resources except one, use '-uall,-<resource>'. For
97example, to run all the tests except for the bsddb tests, give the
98option '-uall,-bsddb'.
Guido van Rossum152494a1996-12-20 03:12:20 +000099"""
100
Guido van Rossum152494a1996-12-20 03:12:20 +0000101import os
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000102import sys
Guido van Rossum152494a1996-12-20 03:12:20 +0000103import getopt
Skip Montanaroab1c7912000-06-30 16:39:27 +0000104import random
Guido van Rossumdc15c272002-08-12 21:55:51 +0000105import warnings
Michael W. Hudson61147f62004-08-03 11:33:28 +0000106import sre
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000107import cStringIO
108import traceback
Guido van Rossumdc15c272002-08-12 21:55:51 +0000109
110# I see no other way to suppress these warnings;
111# putting them in test_grammar.py has no effect:
Guido van Rossum88b1def2002-08-14 17:54:48 +0000112warnings.filterwarnings("ignore", "hex/oct constants", FutureWarning,
Guido van Rossumdc15c272002-08-12 21:55:51 +0000113 ".*test.test_grammar$")
Guido van Rossumc34c4fc2002-09-19 00:42:16 +0000114if sys.maxint > 0x7fffffff:
115 # Also suppress them in <string>, because for 64-bit platforms,
116 # that's where test_grammar.py hides them.
117 warnings.filterwarnings("ignore", "hex/oct constants", FutureWarning,
118 "<string>")
Guido van Rossum152494a1996-12-20 03:12:20 +0000119
Guido van Rossumbb484652002-12-02 09:56:21 +0000120# MacOSX (a.k.a. Darwin) has a default stack size that is too small
121# for deeply recursive regular expressions. We see this as crashes in
122# the Python test suite when running test_re.py and test_sre.py. The
123# fix is to set the stack limit to 2048.
124# This approach may also be useful for other Unixy platforms that
125# suffer from small default stack limits.
126if sys.platform == 'darwin':
127 try:
128 import resource
129 except ImportError:
130 pass
131 else:
132 soft, hard = resource.getrlimit(resource.RLIMIT_STACK)
133 newsoft = min(hard, max(soft, 1024*2048))
134 resource.setrlimit(resource.RLIMIT_STACK, (newsoft, hard))
135
Barry Warsaw04f357c2002-07-23 19:04:11 +0000136from test import test_support
Fred Drake3a15dac2002-04-11 16:39:16 +0000137
Raymond Hettinger7c85fa42004-07-01 11:01:35 +0000138RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network', 'bsddb',
Jeremy Hylton4336eda2004-08-07 19:25:33 +0000139 'decimal', 'compiler')
Fred Drake3a15dac2002-04-11 16:39:16 +0000140
141
Barry Warsaw08fca522001-08-20 22:33:46 +0000142def usage(code, msg=''):
143 print __doc__
144 if msg: print msg
145 sys.exit(code)
146
147
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000148def main(tests=None, testdir=None, verbose=0, quiet=False, generate=False,
149 exclude=False, single=False, randomize=False, fromfile=None,
Walter Dörwaldaee4da62004-11-12 18:51:27 +0000150 findleaks=False, use_resources=None, trace=False, coverdir='coverage',
151 runleaks=False, huntrleaks=False):
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000152 """Execute a test suite.
153
Thomas Wouters7e474022000-07-16 12:04:32 +0000154 This also parses command-line options and modifies its behavior
Fred Drake004d5e62000-10-23 17:22:08 +0000155 accordingly.
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000156
157 tests -- a list of strings containing test names (optional)
158 testdir -- the directory in which to look for tests (optional)
159
160 Users other than the Python test suite will certainly want to
161 specify testdir; if it's omitted, the directory containing the
Fred Drake004d5e62000-10-23 17:22:08 +0000162 Python test suite is searched for.
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000163
164 If the tests argument is omitted, the tests listed on the
165 command-line will be used. If that's empty, too, then all *.py
166 files beginning with test_ will be used.
Skip Montanaroab1c7912000-06-30 16:39:27 +0000167
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000168 The other default arguments (verbose, quiet, generate, exclude, single,
Walter Dörwaldaee4da62004-11-12 18:51:27 +0000169 randomize, findleaks, use_resources, trace and coverdir) allow programmers
170 calling main() directly to set the values that would normally be set by
171 flags on the command line.
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000172 """
Fred Drake004d5e62000-10-23 17:22:08 +0000173
Tim Peters8dee8092001-09-25 20:05:11 +0000174 test_support.record_original_stdout(sys.stdout)
Guido van Rossum152494a1996-12-20 03:12:20 +0000175 try:
Walter Dörwaldaee4da62004-11-12 18:51:27 +0000176 opts, args = getopt.getopt(sys.argv[1:], 'hvgqxsrf:lu:t:TD:NLR:',
Barry Warsaw08fca522001-08-20 22:33:46 +0000177 ['help', 'verbose', 'quiet', 'generate',
Tim Petersc5000df2002-06-02 21:42:01 +0000178 'exclude', 'single', 'random', 'fromfile',
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000179 'findleaks', 'use=', 'threshold=', 'trace',
Walter Dörwaldaee4da62004-11-12 18:51:27 +0000180 'coverdir=', 'nocoverdir', 'runleaks',
181 'huntrleaks='
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000182 ])
Guido van Rossum152494a1996-12-20 03:12:20 +0000183 except getopt.error, msg:
Barry Warsaw08fca522001-08-20 22:33:46 +0000184 usage(2, msg)
185
186 # Defaults
187 if use_resources is None:
188 use_resources = []
Guido van Rossum152494a1996-12-20 03:12:20 +0000189 for o, a in opts:
Barry Warsaw08fca522001-08-20 22:33:46 +0000190 if o in ('-h', '--help'):
191 usage(0)
192 elif o in ('-v', '--verbose'):
193 verbose += 1
194 elif o in ('-q', '--quiet'):
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000195 quiet = True;
Barry Warsaw08fca522001-08-20 22:33:46 +0000196 verbose = 0
197 elif o in ('-g', '--generate'):
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000198 generate = True
Barry Warsaw08fca522001-08-20 22:33:46 +0000199 elif o in ('-x', '--exclude'):
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000200 exclude = True
Barry Warsaw08fca522001-08-20 22:33:46 +0000201 elif o in ('-s', '--single'):
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000202 single = True
Barry Warsaw08fca522001-08-20 22:33:46 +0000203 elif o in ('-r', '--randomize'):
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000204 randomize = True
Tim Petersc5000df2002-06-02 21:42:01 +0000205 elif o in ('-f', '--fromfile'):
206 fromfile = a
Barry Warsaw08fca522001-08-20 22:33:46 +0000207 elif o in ('-l', '--findleaks'):
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000208 findleaks = True
Skip Montanaro0179a182004-06-06 15:53:18 +0000209 elif o in ('-L', '--runleaks'):
210 runleaks = True
Guido van Rossum9e9d4f82002-06-07 15:17:03 +0000211 elif o in ('-t', '--threshold'):
212 import gc
213 gc.set_threshold(int(a))
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000214 elif o in ('-T', '--coverage'):
215 trace = True
Walter Dörwaldaee4da62004-11-12 18:51:27 +0000216 elif o in ('-D', '--coverdir'):
217 coverdir = os.path.join(os.getcwd(), a)
218 elif o in ('-N', '--nocoverdir'):
219 coverdir = None
Michael W. Hudson61147f62004-08-03 11:33:28 +0000220 elif o in ('-R', '--huntrleaks'):
221 huntrleaks = a.split(':')
222 if len(huntrleaks) != 3:
223 print a, huntrleaks
224 usage(2, '-R takes three colon-separated arguments')
225 if len(huntrleaks[0]) == 0:
226 huntrleaks[0] = 5
227 else:
228 huntrleaks[0] = int(huntrleaks[0])
229 if len(huntrleaks[1]) == 0:
230 huntrleaks[1] = 4
231 else:
232 huntrleaks[1] = int(huntrleaks[1])
233 if len(huntrleaks[2]) == 0:
234 huntrleaks[2] = "reflog.txt"
Barry Warsaw08fca522001-08-20 22:33:46 +0000235 elif o in ('-u', '--use'):
Guido van Rossumfe3f6962001-09-06 16:09:41 +0000236 u = [x.lower() for x in a.split(',')]
237 for r in u:
Fred Drake3a15dac2002-04-11 16:39:16 +0000238 if r == 'all':
Fred Drake4dd0f7e2002-11-26 21:44:56 +0000239 use_resources[:] = RESOURCE_NAMES
240 continue
241 remove = False
242 if r[0] == '-':
243 remove = True
244 r = r[1:]
Fred Drake3a15dac2002-04-11 16:39:16 +0000245 if r not in RESOURCE_NAMES:
246 usage(1, 'Invalid -u/--use option: ' + a)
Fred Drake4dd0f7e2002-11-26 21:44:56 +0000247 if remove:
248 if r in use_resources:
249 use_resources.remove(r)
250 elif r not in use_resources:
Andrew MacIntyree41abab2002-04-30 12:11:04 +0000251 use_resources.append(r)
Guido van Rossuma4122201997-08-18 20:08:24 +0000252 if generate and verbose:
Barry Warsaw08fca522001-08-20 22:33:46 +0000253 usage(2, "-g and -v don't go together!")
Tim Petersc5000df2002-06-02 21:42:01 +0000254 if single and fromfile:
255 usage(2, "-s and -f don't go together!")
Barry Warsaw08fca522001-08-20 22:33:46 +0000256
Guido van Rossum152494a1996-12-20 03:12:20 +0000257 good = []
258 bad = []
259 skipped = []
Fred Drake9a0db072003-02-03 15:19:30 +0000260 resource_denieds = []
Barry Warsawe11e3de1999-01-28 19:51:51 +0000261
Neil Schemenauerd569f232000-09-22 15:29:28 +0000262 if findleaks:
Barry Warsawa873b032000-08-03 15:50:37 +0000263 try:
264 import gc
265 except ImportError:
Neil Schemenauer8a00abc2000-10-13 01:32:42 +0000266 print 'No GC available, disabling findleaks.'
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000267 findleaks = False
Barry Warsawa873b032000-08-03 15:50:37 +0000268 else:
Neil Schemenauer8a00abc2000-10-13 01:32:42 +0000269 # Uncomment the line below to report garbage that is not
270 # freeable by reference counting alone. By default only
271 # garbage that is not collectable by the GC is reported.
272 #gc.set_debug(gc.DEBUG_SAVEALL)
Neil Schemenauerd569f232000-09-22 15:29:28 +0000273 found_garbage = []
Barry Warsawa873b032000-08-03 15:50:37 +0000274
Barry Warsawe11e3de1999-01-28 19:51:51 +0000275 if single:
276 from tempfile import gettempdir
277 filename = os.path.join(gettempdir(), 'pynexttest')
278 try:
279 fp = open(filename, 'r')
Eric S. Raymondfc170b12001-02-09 11:51:27 +0000280 next = fp.read().strip()
Barry Warsawe11e3de1999-01-28 19:51:51 +0000281 tests = [next]
282 fp.close()
283 except IOError:
284 pass
Tim Petersc5000df2002-06-02 21:42:01 +0000285
286 if fromfile:
287 tests = []
288 fp = open(fromfile)
289 for line in fp:
290 guts = line.split() # assuming no test has whitespace in its name
291 if guts and not guts[0].startswith('#'):
292 tests.extend(guts)
293 fp.close()
294
295 # Strip .py extensions.
296 if args:
297 args = map(removepy, args)
298 if tests:
299 tests = map(removepy, tests)
300
Guido van Rossum6c74fea1998-08-25 12:29:08 +0000301 stdtests = STDTESTS[:]
302 nottests = NOTTESTS[:]
Guido van Rossum152494a1996-12-20 03:12:20 +0000303 if exclude:
Guido van Rossum6c74fea1998-08-25 12:29:08 +0000304 for arg in args:
305 if arg in stdtests:
306 stdtests.remove(arg)
307 nottests[:0] = args
Guido van Rossum41360a41998-03-26 19:42:58 +0000308 args = []
Guido van Rossum747e1ca1998-08-24 13:48:36 +0000309 tests = tests or args or findtests(testdir, stdtests, nottests)
Barry Warsawe11e3de1999-01-28 19:51:51 +0000310 if single:
311 tests = tests[:1]
Skip Montanaroab1c7912000-06-30 16:39:27 +0000312 if randomize:
313 random.shuffle(tests)
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000314 if trace:
315 import trace
316 tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix],
317 trace=False, count=True)
Guido van Rossum41360a41998-03-26 19:42:58 +0000318 test_support.verbose = verbose # Tell tests to be moderately quiet
Barry Warsaw08fca522001-08-20 22:33:46 +0000319 test_support.use_resources = use_resources
Guido van Rossum5796d262000-04-21 21:35:06 +0000320 save_modules = sys.modules.keys()
Guido van Rossum152494a1996-12-20 03:12:20 +0000321 for test in tests:
Guido van Rossum41360a41998-03-26 19:42:58 +0000322 if not quiet:
323 print test
Guido van Rossum3cda93e2002-09-13 21:28:03 +0000324 sys.stdout.flush()
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000325 if trace:
326 # If we're tracing code coverage, then we don't exit with status
327 # if on a false return value from main.
328 tracer.runctx('runtest(test, generate, verbose, quiet, testdir)',
329 globals=globals(), locals=vars())
Guido van Rossum41360a41998-03-26 19:42:58 +0000330 else:
Michael W. Hudson61147f62004-08-03 11:33:28 +0000331 ok = runtest(test, generate, verbose, quiet, testdir, huntrleaks)
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000332 if ok > 0:
333 good.append(test)
334 elif ok == 0:
335 bad.append(test)
336 else:
337 skipped.append(test)
338 if ok == -2:
339 resource_denieds.append(test)
Neil Schemenauerd569f232000-09-22 15:29:28 +0000340 if findleaks:
341 gc.collect()
342 if gc.garbage:
Neil Schemenauer8a00abc2000-10-13 01:32:42 +0000343 print "Warning: test created", len(gc.garbage),
344 print "uncollectable object(s)."
345 # move the uncollectable objects somewhere so we don't see
346 # them again
Neil Schemenauerd569f232000-09-22 15:29:28 +0000347 found_garbage.extend(gc.garbage)
348 del gc.garbage[:]
Guido van Rossum5796d262000-04-21 21:35:06 +0000349 # Unload the newly imported modules (best effort finalization)
350 for module in sys.modules.keys():
Guido van Rossum51931142000-05-05 14:27:39 +0000351 if module not in save_modules and module.startswith("test."):
Guido van Rossum5796d262000-04-21 21:35:06 +0000352 test_support.unload(module)
Jeremy Hylton7a1ea0e2001-10-17 13:45:28 +0000353
354 # The lists won't be sorted if running with -r
355 good.sort()
356 bad.sort()
357 skipped.sort()
Tim Peterse0c446b2001-10-18 21:57:37 +0000358
Guido van Rossum152494a1996-12-20 03:12:20 +0000359 if good and not quiet:
Guido van Rossum41360a41998-03-26 19:42:58 +0000360 if not bad and not skipped and len(good) > 1:
361 print "All",
362 print count(len(good), "test"), "OK."
Tim Peters1a4d77b2000-12-30 22:21:22 +0000363 if verbose:
Barry Warsaw408b6d32002-07-30 23:27:12 +0000364 print "CAUTION: stdout isn't compared in verbose mode:"
365 print "a test that passes in verbose mode may fail without it."
Guido van Rossum152494a1996-12-20 03:12:20 +0000366 if bad:
Tim Petersa45da922001-08-12 03:45:50 +0000367 print count(len(bad), "test"), "failed:"
368 printlist(bad)
Guido van Rossum152494a1996-12-20 03:12:20 +0000369 if skipped and not quiet:
Tim Petersa45da922001-08-12 03:45:50 +0000370 print count(len(skipped), "test"), "skipped:"
371 printlist(skipped)
Barry Warsawe11e3de1999-01-28 19:51:51 +0000372
Tim Petersb5b7b782001-08-12 01:20:39 +0000373 e = _ExpectedSkips()
Tim Petersa2be2d62001-08-12 02:01:09 +0000374 plat = sys.platform
Tim Petersb5b7b782001-08-12 01:20:39 +0000375 if e.isvalid():
Raymond Hettingera690a992003-11-16 16:17:49 +0000376 surprise = set(skipped) - e.getexpected() - set(resource_denieds)
Tim Petersb5b7b782001-08-12 01:20:39 +0000377 if surprise:
378 print count(len(surprise), "skip"), \
Tim Petersa45da922001-08-12 03:45:50 +0000379 "unexpected on", plat + ":"
380 printlist(surprise)
Tim Petersb5b7b782001-08-12 01:20:39 +0000381 else:
382 print "Those skips are all expected on", plat + "."
383 else:
384 print "Ask someone to teach regrtest.py about which tests are"
385 print "expected to get skipped on", plat + "."
386
Barry Warsawe11e3de1999-01-28 19:51:51 +0000387 if single:
388 alltests = findtests(testdir, stdtests, nottests)
389 for i in range(len(alltests)):
390 if tests[0] == alltests[i]:
391 if i == len(alltests) - 1:
392 os.unlink(filename)
393 else:
394 fp = open(filename, 'w')
395 fp.write(alltests[i+1] + '\n')
396 fp.close()
397 break
398 else:
399 os.unlink(filename)
400
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000401 if trace:
402 r = tracer.results()
403 r.write_results(show_missing=True, summary=True, coverdir=coverdir)
404
Skip Montanaro0179a182004-06-06 15:53:18 +0000405 if runleaks:
406 os.system("leaks %d" % os.getpid())
407
Tim Peters5943b4a2003-07-23 00:30:39 +0000408 sys.exit(len(bad) > 0)
Barry Warsaw08fca522001-08-20 22:33:46 +0000409
Guido van Rossum152494a1996-12-20 03:12:20 +0000410
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000411STDTESTS = [
Guido van Rossum152494a1996-12-20 03:12:20 +0000412 'test_grammar',
413 'test_opcodes',
414 'test_operations',
415 'test_builtin',
416 'test_exceptions',
417 'test_types',
418 ]
419
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000420NOTTESTS = [
Guido van Rossum152494a1996-12-20 03:12:20 +0000421 'test_support',
Jeremy Hylton62e2c7e2001-02-28 17:48:06 +0000422 'test_future1',
423 'test_future2',
Jeremy Hylton8471a352001-08-20 20:33:42 +0000424 'test_future3',
Guido van Rossum152494a1996-12-20 03:12:20 +0000425 ]
426
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000427def findtests(testdir=None, stdtests=STDTESTS, nottests=NOTTESTS):
Guido van Rossum152494a1996-12-20 03:12:20 +0000428 """Return a list of all applicable test modules."""
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000429 if not testdir: testdir = findtestdir()
Guido van Rossum152494a1996-12-20 03:12:20 +0000430 names = os.listdir(testdir)
431 tests = []
432 for name in names:
Guido van Rossume2ae77b2001-10-24 20:42:55 +0000433 if name[:5] == "test_" and name[-3:] == os.extsep+"py":
Guido van Rossum41360a41998-03-26 19:42:58 +0000434 modname = name[:-3]
435 if modname not in stdtests and modname not in nottests:
436 tests.append(modname)
Guido van Rossum152494a1996-12-20 03:12:20 +0000437 tests.sort()
438 return stdtests + tests
439
Michael W. Hudson61147f62004-08-03 11:33:28 +0000440def runtest(test, generate, verbose, quiet, testdir=None, huntrleaks=False):
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000441 """Run a single test.
442 test -- the name of the test
443 generate -- if true, generate output, instead of running the test
444 and comparing it to a previously created output file
445 verbose -- if true, print more messages
Trent Mickf29f47b2000-08-11 19:02:59 +0000446 quiet -- if true, don't print 'skipped' messages (probably redundant)
Guido van Rossum6fd83b71998-08-01 17:04:08 +0000447 testdir -- test directory
448 """
Guido van Rossum152494a1996-12-20 03:12:20 +0000449 test_support.unload(test)
Barry Warsaw3b6d0252004-02-07 22:43:03 +0000450 if not testdir:
451 testdir = findtestdir()
Guido van Rossum152494a1996-12-20 03:12:20 +0000452 outputdir = os.path.join(testdir, "output")
453 outputfile = os.path.join(outputdir, test)
Tim Peters9390cc12001-09-28 20:14:46 +0000454 if verbose:
Guido van Rossum41360a41998-03-26 19:42:58 +0000455 cfp = None
Guido van Rossum0fcca4e2001-09-21 20:31:52 +0000456 else:
Raymond Hettinger74e67662003-05-17 20:44:12 +0000457 cfp = cStringIO.StringIO()
Michael W. Hudson61147f62004-08-03 11:33:28 +0000458 if huntrleaks:
459 refrep = open(huntrleaks[2], "a")
Guido van Rossum152494a1996-12-20 03:12:20 +0000460 try:
Tim Peters342ca752001-09-25 19:13:20 +0000461 save_stdout = sys.stdout
Guido van Rossum41360a41998-03-26 19:42:58 +0000462 try:
463 if cfp:
464 sys.stdout = cfp
465 print test # Output file starts with test name
Barry Warsaw408b6d32002-07-30 23:27:12 +0000466 if test.startswith('test.'):
467 abstest = test
468 else:
469 # Always import it from the test package
470 abstest = 'test.' + test
471 the_package = __import__(abstest, globals(), locals(), [])
472 the_module = getattr(the_package, test)
Tim Petersd9742212001-05-22 18:28:25 +0000473 # Most tests run to completion simply as a side-effect of
474 # being imported. For the benefit of tests that can't run
475 # that way (like test_threaded_import), explicitly invoke
476 # their test_main() function (if it exists).
477 indirect_test = getattr(the_module, "test_main", None)
478 if indirect_test is not None:
479 indirect_test()
Michael W. Hudson61147f62004-08-03 11:33:28 +0000480 if huntrleaks:
481 # This code *is* hackish and inelegant, yes.
482 # But it seems to do the job.
483 import copy_reg
484 fs = warnings.filters[:]
485 ps = copy_reg.dispatch_table.copy()
486 pic = sys.path_importer_cache.copy()
487 import gc
488 def cleanup():
489 import _strptime, urlparse, warnings, dircache
490 from distutils.dir_util import _path_created
491 _path_created.clear()
492 warnings.filters[:] = fs
493 gc.collect()
494 sre.purge()
495 _strptime._regex_cache.clear()
496 urlparse.clear_cache()
497 copy_reg.dispatch_table.clear()
498 copy_reg.dispatch_table.update(ps)
499 sys.path_importer_cache.clear()
500 sys.path_importer_cache.update(pic)
501 dircache.reset()
502 if indirect_test:
503 def run_the_test():
504 indirect_test()
505 else:
506 def run_the_test():
507 reload(the_module)
508 deltas = []
509 repcount = huntrleaks[0] + huntrleaks[1]
510 print >> sys.stderr, "beginning", repcount, "repetitions"
511 print >> sys.stderr, \
512 ("1234567890"*(repcount//10 + 1))[:repcount]
513 for i in range(repcount):
514 rc = sys.gettotalrefcount()
515 run_the_test()
516 sys.stderr.write('.')
517 cleanup()
518 deltas.append(sys.gettotalrefcount() - rc - 2)
519 print >>sys.stderr
520 if max(map(abs, deltas[-huntrleaks[1]:])) > 0:
Michael W. Hudsone667e662004-08-12 18:27:48 +0000521 print >>sys.stderr, test, 'leaked', \
522 deltas[-huntrleaks[1]:], 'references'
Michael W. Hudson61147f62004-08-03 11:33:28 +0000523 print >>refrep, test, 'leaked', \
524 deltas[-huntrleaks[1]:], 'references'
525 # The end of the huntrleaks hackishness.
Guido van Rossum41360a41998-03-26 19:42:58 +0000526 finally:
Tim Peters342ca752001-09-25 19:13:20 +0000527 sys.stdout = save_stdout
Fred Drake9a0db072003-02-03 15:19:30 +0000528 except test_support.ResourceDenied, msg:
529 if not quiet:
530 print test, "skipped --", msg
531 sys.stdout.flush()
532 return -2
Thomas Wouters3af826e2000-08-04 13:17:51 +0000533 except (ImportError, test_support.TestSkipped), msg:
Trent Mickf29f47b2000-08-11 19:02:59 +0000534 if not quiet:
Fred Drakede4742b2002-10-17 20:36:08 +0000535 print test, "skipped --", msg
Guido van Rossum3cda93e2002-09-13 21:28:03 +0000536 sys.stdout.flush()
Guido van Rossum41360a41998-03-26 19:42:58 +0000537 return -1
Fred Drakefe5c22a2000-08-18 16:04:05 +0000538 except KeyboardInterrupt:
539 raise
Guido van Rossum152494a1996-12-20 03:12:20 +0000540 except test_support.TestFailed, msg:
Guido van Rossum41360a41998-03-26 19:42:58 +0000541 print "test", test, "failed --", msg
Guido van Rossum3cda93e2002-09-13 21:28:03 +0000542 sys.stdout.flush()
Guido van Rossum41360a41998-03-26 19:42:58 +0000543 return 0
Guido van Rossum9e48b271997-07-16 01:56:13 +0000544 except:
Guido van Rossum41360a41998-03-26 19:42:58 +0000545 type, value = sys.exc_info()[:2]
Fred Drake27c4b392000-08-23 20:34:40 +0000546 print "test", test, "crashed --", str(type) + ":", value
Guido van Rossum3cda93e2002-09-13 21:28:03 +0000547 sys.stdout.flush()
Guido van Rossum41360a41998-03-26 19:42:58 +0000548 if verbose:
549 traceback.print_exc(file=sys.stdout)
Guido van Rossum3cda93e2002-09-13 21:28:03 +0000550 sys.stdout.flush()
Guido van Rossum41360a41998-03-26 19:42:58 +0000551 return 0
Guido van Rossum152494a1996-12-20 03:12:20 +0000552 else:
Guido van Rossum0fcca4e2001-09-21 20:31:52 +0000553 if not cfp:
554 return 1
555 output = cfp.getvalue()
Fred Drakee51fe8d2001-05-29 17:10:51 +0000556 if generate:
Fred Drakee51fe8d2001-05-29 17:10:51 +0000557 if output == test + "\n":
558 if os.path.exists(outputfile):
559 # Write it since it already exists (and the contents
560 # may have changed), but let the user know it isn't
561 # needed:
Fred Drakee51fe8d2001-05-29 17:10:51 +0000562 print "output file", outputfile, \
563 "is no longer needed; consider removing it"
Guido van Rossum0fcca4e2001-09-21 20:31:52 +0000564 else:
565 # We don't need it, so don't create it.
566 return 1
567 fp = open(outputfile, "w")
568 fp.write(output)
569 fp.close()
570 return 1
571 if os.path.exists(outputfile):
572 fp = open(outputfile, "r")
573 expected = fp.read()
574 fp.close()
575 else:
576 expected = test + "\n"
Michael W. Hudson61147f62004-08-03 11:33:28 +0000577 if output == expected or huntrleaks:
Guido van Rossum0fcca4e2001-09-21 20:31:52 +0000578 return 1
579 print "test", test, "produced unexpected output:"
Guido van Rossum3cda93e2002-09-13 21:28:03 +0000580 sys.stdout.flush()
Guido van Rossum0fcca4e2001-09-21 20:31:52 +0000581 reportdiff(expected, output)
Guido van Rossum3cda93e2002-09-13 21:28:03 +0000582 sys.stdout.flush()
Guido van Rossum0fcca4e2001-09-21 20:31:52 +0000583 return 0
584
585def reportdiff(expected, output):
Guido van Rossum0fcca4e2001-09-21 20:31:52 +0000586 import difflib
Tim Petersc377b162001-09-22 05:31:03 +0000587 print "*" * 70
588 a = expected.splitlines(1)
589 b = output.splitlines(1)
Guido van Rossumcf691932001-09-21 21:06:22 +0000590 sm = difflib.SequenceMatcher(a=a, b=b)
591 tuples = sm.get_opcodes()
Tim Petersc377b162001-09-22 05:31:03 +0000592
Guido van Rossumcf691932001-09-21 21:06:22 +0000593 def pair(x0, x1):
Tim Petersc377b162001-09-22 05:31:03 +0000594 # x0:x1 are 0-based slice indices; convert to 1-based line indices.
Guido van Rossumcf691932001-09-21 21:06:22 +0000595 x0 += 1
596 if x0 >= x1:
Tim Petersc377b162001-09-22 05:31:03 +0000597 return "line " + str(x0)
Guido van Rossumcf691932001-09-21 21:06:22 +0000598 else:
Tim Petersc377b162001-09-22 05:31:03 +0000599 return "lines %d-%d" % (x0, x1)
600
Guido van Rossumcf691932001-09-21 21:06:22 +0000601 for op, a0, a1, b0, b1 in tuples:
602 if op == 'equal':
603 pass
Tim Petersc377b162001-09-22 05:31:03 +0000604
Guido van Rossumcf691932001-09-21 21:06:22 +0000605 elif op == 'delete':
Tim Petersc377b162001-09-22 05:31:03 +0000606 print "***", pair(a0, a1), "of expected output missing:"
Guido van Rossumcf691932001-09-21 21:06:22 +0000607 for line in a[a0:a1]:
Tim Petersc377b162001-09-22 05:31:03 +0000608 print "-", line,
609
Guido van Rossumcf691932001-09-21 21:06:22 +0000610 elif op == 'replace':
Tim Petersc377b162001-09-22 05:31:03 +0000611 print "*** mismatch between", pair(a0, a1), "of expected", \
612 "output and", pair(b0, b1), "of actual output:"
613 for line in difflib.ndiff(a[a0:a1], b[b0:b1]):
614 print line,
615
Guido van Rossumcf691932001-09-21 21:06:22 +0000616 elif op == 'insert':
Tim Petersc377b162001-09-22 05:31:03 +0000617 print "***", pair(b0, b1), "of actual output doesn't appear", \
618 "in expected output after line", str(a1)+":"
Guido van Rossumcf691932001-09-21 21:06:22 +0000619 for line in b[b0:b1]:
Tim Petersc377b162001-09-22 05:31:03 +0000620 print "+", line,
621
Guido van Rossumcf691932001-09-21 21:06:22 +0000622 else:
623 print "get_opcodes() returned bad tuple?!?!", (op, a0, a1, b0, b1)
Tim Petersc377b162001-09-22 05:31:03 +0000624
Guido van Rossum0fcca4e2001-09-21 20:31:52 +0000625 print "*" * 70
Guido van Rossum152494a1996-12-20 03:12:20 +0000626
627def findtestdir():
628 if __name__ == '__main__':
Guido van Rossum41360a41998-03-26 19:42:58 +0000629 file = sys.argv[0]
Guido van Rossum152494a1996-12-20 03:12:20 +0000630 else:
Guido van Rossum41360a41998-03-26 19:42:58 +0000631 file = __file__
Guido van Rossum152494a1996-12-20 03:12:20 +0000632 testdir = os.path.dirname(file) or os.curdir
633 return testdir
634
Tim Petersc5000df2002-06-02 21:42:01 +0000635def removepy(name):
636 if name.endswith(os.extsep + "py"):
637 name = name[:-3]
638 return name
639
Guido van Rossum152494a1996-12-20 03:12:20 +0000640def count(n, word):
641 if n == 1:
Guido van Rossum41360a41998-03-26 19:42:58 +0000642 return "%d %s" % (n, word)
Guido van Rossum152494a1996-12-20 03:12:20 +0000643 else:
Guido van Rossum41360a41998-03-26 19:42:58 +0000644 return "%d %ss" % (n, word)
Guido van Rossum152494a1996-12-20 03:12:20 +0000645
Tim Petersa45da922001-08-12 03:45:50 +0000646def printlist(x, width=70, indent=4):
Tim Peters7c7efe92002-08-23 17:55:54 +0000647 """Print the elements of iterable x to stdout.
Tim Petersa45da922001-08-12 03:45:50 +0000648
649 Optional arg width (default 70) is the maximum line length.
650 Optional arg indent (default 4) is the number of blanks with which to
651 begin each line.
652 """
653
Tim Petersba78bc42002-07-04 19:45:06 +0000654 from textwrap import fill
655 blanks = ' ' * indent
656 print fill(' '.join(map(str, x)), width,
657 initial_indent=blanks, subsequent_indent=blanks)
Tim Petersa45da922001-08-12 03:45:50 +0000658
Tim Petersde14a302002-04-01 05:04:46 +0000659# Map sys.platform to a string containing the basenames of tests
660# expected to be skipped on that platform.
Tim Peters2a182db2002-10-09 01:07:11 +0000661#
662# Special cases:
663# test_pep277
664# The _ExpectedSkips constructor adds this to the set of expected
665# skips if not os.path.supports_unicode_filenames.
Tim Peters1b445d32002-11-24 18:53:11 +0000666# test_normalization
667# Whether a skip is expected here depends on whether a large test
668# input file has been downloaded. test_normalization.skip_expected
Tim Peters1babdfc2002-11-24 19:19:09 +0000669# controls that.
Tim Petersb4ee4eb2002-12-04 03:26:57 +0000670# test_socket_ssl
671# Controlled by test_socket_ssl.skip_expected. Requires the network
672# resource, and a socket module with ssl support.
Neal Norwitz55b61d22003-02-28 19:57:03 +0000673# test_timeout
674# Controlled by test_timeout.skip_expected. Requires the network
675# resource and a socket module.
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +0000676# test_codecmaps_*
677# Whether a skip is expected here depends on whether a large test
678# input file has been downloaded. test_codecmaps_*.skip_expected
679# controls that.
Tim Petersde14a302002-04-01 05:04:46 +0000680
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000681_expectations = {
682 'win32':
683 """
Tim Petersc7c516a2003-09-20 22:06:13 +0000684 test__locale
Raymond Hettinger901dc982003-11-20 19:02:02 +0000685 test_applesingle
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000686 test_al
Skip Montanaro823ba282003-05-06 20:36:24 +0000687 test_bsddb185
Tim Peters78e35f92002-11-22 20:00:34 +0000688 test_bsddb3
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000689 test_cd
690 test_cl
691 test_commands
692 test_crypt
Tim Petersd7030572001-10-22 22:06:08 +0000693 test_curses
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000694 test_dbm
695 test_dl
696 test_fcntl
697 test_fork1
698 test_gdbm
699 test_gl
700 test_grp
701 test_imgfile
Tim Petersfd8e6e52003-03-04 00:26:38 +0000702 test_ioctl
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000703 test_largefile
704 test_linuxaudiodev
705 test_mhlib
706 test_nis
707 test_openpty
Tim Petersefc4b122002-12-10 18:47:56 +0000708 test_ossaudiodev
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000709 test_poll
Tim Peters003eb302003-02-17 21:48:48 +0000710 test_posix
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000711 test_pty
712 test_pwd
Tim Peters1e33ffa2002-04-23 23:09:02 +0000713 test_resource
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000714 test_signal
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000715 test_sunaudiodev
Tim Peterscea2cc42004-08-04 02:32:03 +0000716 test_threadsignals
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000717 test_timing
718 """,
719 'linux2':
720 """
721 test_al
Guido van Rossum944a6c32003-11-20 22:11:29 +0000722 test_applesingle
Skip Montanaro823ba282003-05-06 20:36:24 +0000723 test_bsddb185
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000724 test_cd
725 test_cl
Guido van Rossumf66dacd2001-10-23 15:10:55 +0000726 test_curses
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000727 test_dl
728 test_gl
729 test_imgfile
730 test_largefile
Guido van Rossum4507ec72003-02-14 19:29:22 +0000731 test_linuxaudiodev
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000732 test_nis
733 test_ntpath
Guido van Rossum4507ec72003-02-14 19:29:22 +0000734 test_ossaudiodev
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000735 test_sunaudiodev
Guido van Rossumf73e30c2001-08-12 02:22:19 +0000736 """,
Jack Jansen49a806e2001-08-28 14:49:00 +0000737 'mac':
Guido van Rossumaa782362001-09-02 03:58:41 +0000738 """
739 test_al
Jack Jansen67975142003-01-08 16:31:11 +0000740 test_atexit
Guido van Rossumaa782362001-09-02 03:58:41 +0000741 test_bsddb
Skip Montanaro823ba282003-05-06 20:36:24 +0000742 test_bsddb185
Jack Jansen67975142003-01-08 16:31:11 +0000743 test_bsddb3
744 test_bz2
Guido van Rossumaa782362001-09-02 03:58:41 +0000745 test_cd
746 test_cl
747 test_commands
748 test_crypt
Jack Jansenb3be2162001-11-30 14:16:36 +0000749 test_curses
Guido van Rossumaa782362001-09-02 03:58:41 +0000750 test_dbm
751 test_dl
752 test_fcntl
753 test_fork1
754 test_gl
755 test_grp
Jack Jansenc4d6bdd2003-03-07 15:38:11 +0000756 test_ioctl
Guido van Rossumaa782362001-09-02 03:58:41 +0000757 test_imgfile
758 test_largefile
759 test_linuxaudiodev
760 test_locale
761 test_mmap
762 test_nis
763 test_ntpath
764 test_openpty
Jack Jansen67975142003-01-08 16:31:11 +0000765 test_ossaudiodev
Guido van Rossumaa782362001-09-02 03:58:41 +0000766 test_poll
Jack Jansen67975142003-01-08 16:31:11 +0000767 test_popen
Guido van Rossumaa782362001-09-02 03:58:41 +0000768 test_popen2
Jack Jansen5bb97e62003-02-21 22:33:55 +0000769 test_posix
Guido van Rossumaa782362001-09-02 03:58:41 +0000770 test_pty
771 test_pwd
Jack Jansen67975142003-01-08 16:31:11 +0000772 test_resource
Guido van Rossumaa782362001-09-02 03:58:41 +0000773 test_signal
Guido van Rossumaa782362001-09-02 03:58:41 +0000774 test_sunaudiodev
775 test_sundry
Jack Jansenc4d6bdd2003-03-07 15:38:11 +0000776 test_tarfile
Guido van Rossumaa782362001-09-02 03:58:41 +0000777 test_timing
Guido van Rossumaa782362001-09-02 03:58:41 +0000778 """,
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000779 'unixware7':
Martin v. Löwis0ace3262001-09-05 14:38:48 +0000780 """
781 test_al
Guido van Rossum944a6c32003-11-20 22:11:29 +0000782 test_applesingle
Martin v. Löwis0ace3262001-09-05 14:38:48 +0000783 test_bsddb
Skip Montanaro823ba282003-05-06 20:36:24 +0000784 test_bsddb185
Martin v. Löwis0ace3262001-09-05 14:38:48 +0000785 test_cd
786 test_cl
787 test_dl
788 test_gl
789 test_imgfile
790 test_largefile
791 test_linuxaudiodev
792 test_minidom
793 test_nis
794 test_ntpath
795 test_openpty
796 test_pyexpat
797 test_sax
Martin v. Löwis0ace3262001-09-05 14:38:48 +0000798 test_sunaudiodev
799 test_sundry
Martin v. Löwis0ace3262001-09-05 14:38:48 +0000800 """,
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000801 'openunix8':
802 """
803 test_al
Guido van Rossum944a6c32003-11-20 22:11:29 +0000804 test_applesingle
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000805 test_bsddb
Skip Montanaro823ba282003-05-06 20:36:24 +0000806 test_bsddb185
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000807 test_cd
808 test_cl
809 test_dl
810 test_gl
811 test_imgfile
812 test_largefile
813 test_linuxaudiodev
814 test_minidom
815 test_nis
816 test_ntpath
817 test_openpty
818 test_pyexpat
819 test_sax
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000820 test_sunaudiodev
821 test_sundry
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000822 """,
823 'sco_sv3':
824 """
825 test_al
Guido van Rossum944a6c32003-11-20 22:11:29 +0000826 test_applesingle
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000827 test_asynchat
828 test_bsddb
Skip Montanaro823ba282003-05-06 20:36:24 +0000829 test_bsddb185
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000830 test_cd
831 test_cl
832 test_dl
833 test_fork1
834 test_gettext
835 test_gl
836 test_imgfile
837 test_largefile
838 test_linuxaudiodev
839 test_locale
840 test_minidom
841 test_nis
842 test_ntpath
843 test_openpty
844 test_pyexpat
845 test_queue
846 test_sax
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000847 test_sunaudiodev
848 test_sundry
849 test_thread
850 test_threaded_import
851 test_threadedtempfile
852 test_threading
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000853 """,
Guido van Rossume2ae77b2001-10-24 20:42:55 +0000854 'riscos':
855 """
856 test_al
Guido van Rossum944a6c32003-11-20 22:11:29 +0000857 test_applesingle
Guido van Rossume2ae77b2001-10-24 20:42:55 +0000858 test_asynchat
Martin v. Löwisa94568a2003-05-10 07:36:56 +0000859 test_atexit
Guido van Rossume2ae77b2001-10-24 20:42:55 +0000860 test_bsddb
Skip Montanaro823ba282003-05-06 20:36:24 +0000861 test_bsddb185
Martin v. Löwisa94568a2003-05-10 07:36:56 +0000862 test_bsddb3
Guido van Rossume2ae77b2001-10-24 20:42:55 +0000863 test_cd
864 test_cl
865 test_commands
866 test_crypt
867 test_dbm
868 test_dl
869 test_fcntl
870 test_fork1
871 test_gdbm
872 test_gl
873 test_grp
874 test_imgfile
875 test_largefile
876 test_linuxaudiodev
877 test_locale
878 test_mmap
879 test_nis
880 test_ntpath
881 test_openpty
882 test_poll
883 test_popen2
884 test_pty
885 test_pwd
Guido van Rossume2ae77b2001-10-24 20:42:55 +0000886 test_strop
887 test_sunaudiodev
888 test_sundry
889 test_thread
890 test_threaded_import
891 test_threadedtempfile
892 test_threading
893 test_timing
Guido van Rossume2ae77b2001-10-24 20:42:55 +0000894 """,
Jack Jansen8a97f4a2001-12-05 23:27:32 +0000895 'darwin':
Jack Jansen398c2362001-12-02 21:41:36 +0000896 """
Brett Cannon2bfb94c2003-10-13 04:27:47 +0000897 test__locale
Jack Jansen398c2362001-12-02 21:41:36 +0000898 test_al
Jack Jansenacda3392002-12-30 23:03:13 +0000899 test_bsddb
Guido van Rossum9d427002002-12-03 10:24:56 +0000900 test_bsddb3
Jack Jansen398c2362001-12-02 21:41:36 +0000901 test_cd
902 test_cl
903 test_curses
904 test_dl
905 test_gdbm
906 test_gl
907 test_imgfile
908 test_largefile
909 test_linuxaudiodev
Jack Jansenacda3392002-12-30 23:03:13 +0000910 test_locale
Jack Jansen398c2362001-12-02 21:41:36 +0000911 test_minidom
912 test_nis
913 test_ntpath
Jack Jansenacda3392002-12-30 23:03:13 +0000914 test_ossaudiodev
Jack Jansen398c2362001-12-02 21:41:36 +0000915 test_poll
Jack Jansen398c2362001-12-02 21:41:36 +0000916 test_sunaudiodev
Jack Jansen398c2362001-12-02 21:41:36 +0000917 """,
Guido van Rossum11c3f092002-07-17 15:08:24 +0000918 'sunos5':
919 """
920 test_al
Guido van Rossum944a6c32003-11-20 22:11:29 +0000921 test_applesingle
Guido van Rossum11c3f092002-07-17 15:08:24 +0000922 test_bsddb
Skip Montanaro823ba282003-05-06 20:36:24 +0000923 test_bsddb185
Guido van Rossum11c3f092002-07-17 15:08:24 +0000924 test_cd
925 test_cl
926 test_curses
927 test_dbm
Guido van Rossum11c3f092002-07-17 15:08:24 +0000928 test_gdbm
929 test_gl
930 test_gzip
931 test_imgfile
932 test_linuxaudiodev
Guido van Rossum11c3f092002-07-17 15:08:24 +0000933 test_openpty
Guido van Rossum11c3f092002-07-17 15:08:24 +0000934 test_zipfile
935 test_zlib
Jeremy Hyltoned375e12002-07-17 15:56:55 +0000936 """,
Skip Montanarob3230212002-03-15 02:54:03 +0000937 'hp-ux11':
938 """
939 test_al
Guido van Rossum944a6c32003-11-20 22:11:29 +0000940 test_applesingle
Skip Montanarob3230212002-03-15 02:54:03 +0000941 test_bsddb
Skip Montanaro823ba282003-05-06 20:36:24 +0000942 test_bsddb185
Skip Montanarob3230212002-03-15 02:54:03 +0000943 test_cd
944 test_cl
945 test_curses
946 test_dl
947 test_gdbm
948 test_gl
949 test_gzip
950 test_imgfile
951 test_largefile
952 test_linuxaudiodev
953 test_locale
954 test_minidom
955 test_nis
956 test_ntpath
957 test_openpty
958 test_pyexpat
959 test_sax
Skip Montanarob3230212002-03-15 02:54:03 +0000960 test_sunaudiodev
Skip Montanarob3230212002-03-15 02:54:03 +0000961 test_zipfile
962 test_zlib
963 """,
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000964 'atheos':
Tim Petersc411dba2002-07-16 21:35:23 +0000965 """
966 test_al
Guido van Rossum944a6c32003-11-20 22:11:29 +0000967 test_applesingle
Skip Montanaro823ba282003-05-06 20:36:24 +0000968 test_bsddb185
Tim Petersc411dba2002-07-16 21:35:23 +0000969 test_cd
970 test_cl
971 test_curses
972 test_dl
Tim Petersc411dba2002-07-16 21:35:23 +0000973 test_gdbm
974 test_gl
975 test_imgfile
976 test_largefile
977 test_linuxaudiodev
978 test_locale
979 test_mhlib
980 test_mmap
Tim Petersc411dba2002-07-16 21:35:23 +0000981 test_nis
982 test_poll
983 test_popen2
984 test_resource
Tim Petersc411dba2002-07-16 21:35:23 +0000985 test_sunaudiodev
Tim Petersc411dba2002-07-16 21:35:23 +0000986 """,
Jason Tishler25115942002-12-05 15:18:15 +0000987 'cygwin':
988 """
989 test_al
Guido van Rossum944a6c32003-11-20 22:11:29 +0000990 test_applesingle
Skip Montanaro823ba282003-05-06 20:36:24 +0000991 test_bsddb185
Tim Petersb0f89e02002-12-05 17:20:25 +0000992 test_bsddb3
Jason Tishler25115942002-12-05 15:18:15 +0000993 test_cd
994 test_cl
995 test_curses
996 test_dbm
Jason Tishler25115942002-12-05 15:18:15 +0000997 test_gl
998 test_imgfile
Jason Tishlerc23f39c2003-07-22 18:35:58 +0000999 test_ioctl
Jason Tishler25115942002-12-05 15:18:15 +00001000 test_largefile
1001 test_linuxaudiodev
1002 test_locale
Jason Tishler25115942002-12-05 15:18:15 +00001003 test_nis
Jason Tishler5c4ded22003-02-05 16:46:01 +00001004 test_ossaudiodev
Jason Tishler25115942002-12-05 15:18:15 +00001005 test_socketserver
1006 test_sunaudiodev
Jason Tishler25115942002-12-05 15:18:15 +00001007 """,
Andrew MacIntyrefd07e7d2002-12-31 11:26:50 +00001008 'os2emx':
1009 """
1010 test_al
Guido van Rossum944a6c32003-11-20 22:11:29 +00001011 test_applesingle
Andrew MacIntyrefd07e7d2002-12-31 11:26:50 +00001012 test_audioop
Skip Montanaro823ba282003-05-06 20:36:24 +00001013 test_bsddb185
Andrew MacIntyrefd07e7d2002-12-31 11:26:50 +00001014 test_bsddb3
1015 test_cd
1016 test_cl
1017 test_commands
1018 test_curses
1019 test_dl
Andrew MacIntyrefd07e7d2002-12-31 11:26:50 +00001020 test_gl
1021 test_imgfile
1022 test_largefile
1023 test_linuxaudiodev
1024 test_mhlib
1025 test_mmap
1026 test_nis
1027 test_openpty
1028 test_ossaudiodev
1029 test_pty
1030 test_resource
1031 test_signal
1032 test_sunaudiodev
Andrew MacIntyrefd07e7d2002-12-31 11:26:50 +00001033 """,
Guido van Rossum944a6c32003-11-20 22:11:29 +00001034 'freebsd4':
1035 """
1036 test_aepack
1037 test_al
1038 test_applesingle
1039 test_bsddb
1040 test_bsddb3
1041 test_cd
1042 test_cl
Hye-Shik Changf64700a2004-08-18 15:13:41 +00001043 test_gdbm
Guido van Rossum944a6c32003-11-20 22:11:29 +00001044 test_gl
1045 test_imgfile
1046 test_linuxaudiodev
1047 test_locale
1048 test_macfs
1049 test_macostools
1050 test_nis
1051 test_normalization
1052 test_ossaudiodev
1053 test_pep277
1054 test_plistlib
Hye-Shik Changf64700a2004-08-18 15:13:41 +00001055 test_pty
Guido van Rossum944a6c32003-11-20 22:11:29 +00001056 test_scriptpackages
1057 test_socket_ssl
1058 test_socketserver
1059 test_sunaudiodev
Hye-Shik Changf64700a2004-08-18 15:13:41 +00001060 test_tcl
Guido van Rossum944a6c32003-11-20 22:11:29 +00001061 test_timeout
1062 test_unicode_file
1063 test_urllibnet
1064 test_winreg
1065 test_winsound
Martin v. Löwis56f88112003-06-07 20:01:37 +00001066 """,
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001067}
Martin v. Löwis32d0c1b2004-07-26 12:09:13 +00001068_expectations['freebsd5'] = _expectations['freebsd4']
Hye-Shik Changf64700a2004-08-18 15:13:41 +00001069_expectations['freebsd6'] = _expectations['freebsd4']
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001070
Tim Petersb5b7b782001-08-12 01:20:39 +00001071class _ExpectedSkips:
1072 def __init__(self):
Tim Peters2a182db2002-10-09 01:07:11 +00001073 import os.path
Tim Peters1b445d32002-11-24 18:53:11 +00001074 from test import test_normalization
Tim Petersb4ee4eb2002-12-04 03:26:57 +00001075 from test import test_socket_ssl
Neal Norwitz55b61d22003-02-28 19:57:03 +00001076 from test import test_timeout
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +00001077 from test import test_codecmaps_cn, test_codecmaps_jp
1078 from test import test_codecmaps_kr, test_codecmaps_tw
Hye-Shik Chang5ef60182004-07-19 06:39:37 +00001079 from test import test_codecmaps_hk
Tim Peters1b445d32002-11-24 18:53:11 +00001080
Tim Peters7c7efe92002-08-23 17:55:54 +00001081 self.valid = False
Tim Petersde14a302002-04-01 05:04:46 +00001082 if sys.platform in _expectations:
Guido van Rossumf73e30c2001-08-12 02:22:19 +00001083 s = _expectations[sys.platform]
Raymond Hettingera690a992003-11-16 16:17:49 +00001084 self.expected = set(s.split())
Tim Peters1b445d32002-11-24 18:53:11 +00001085
Tim Peters2a182db2002-10-09 01:07:11 +00001086 if not os.path.supports_unicode_filenames:
1087 self.expected.add('test_pep277')
Tim Peters1b445d32002-11-24 18:53:11 +00001088
1089 if test_normalization.skip_expected:
1090 self.expected.add('test_normalization')
1091
Tim Petersb4ee4eb2002-12-04 03:26:57 +00001092 if test_socket_ssl.skip_expected:
1093 self.expected.add('test_socket_ssl')
1094
Neal Norwitz55b61d22003-02-28 19:57:03 +00001095 if test_timeout.skip_expected:
1096 self.expected.add('test_timeout')
1097
Hye-Shik Chang5ef60182004-07-19 06:39:37 +00001098 for cc in ('cn', 'jp', 'kr', 'tw', 'hk'):
Hye-Shik Chang3e2a3062004-01-17 14:29:29 +00001099 if eval('test_codecmaps_' + cc).skip_expected:
1100 self.expected.add('test_codecmaps_' + cc)
1101
Martin v. Löwisfba73692004-11-13 11:13:35 +00001102 if sys.maxint == 9223372036854775807L:
1103 self.expected.add('test_rgbimg')
1104 self.expected.add('test_imageop')
1105
Jack Jansen6afc5e02003-01-29 16:24:16 +00001106 if not sys.platform in ("mac", "darwin"):
Neal Norwitz7035c982003-03-29 22:01:17 +00001107 MAC_ONLY = ["test_macostools", "test_macfs", "test_aepack",
1108 "test_plistlib", "test_scriptpackages"]
1109 for skip in MAC_ONLY:
1110 self.expected.add(skip)
Tim Petersecd79eb2003-01-29 00:35:32 +00001111
1112 if sys.platform != "win32":
Neal Norwitz7035c982003-03-29 22:01:17 +00001113 WIN_ONLY = ["test_unicode_file", "test_winreg",
1114 "test_winsound"]
1115 for skip in WIN_ONLY:
1116 self.expected.add(skip)
Tim Petersf2715e02003-02-19 02:35:07 +00001117
Tim Peters7c7efe92002-08-23 17:55:54 +00001118 self.valid = True
Tim Petersb5b7b782001-08-12 01:20:39 +00001119
1120 def isvalid(self):
1121 "Return true iff _ExpectedSkips knows about the current platform."
1122 return self.valid
1123
1124 def getexpected(self):
1125 """Return set of test names we expect to skip on current platform.
1126
1127 self.isvalid() must be true.
1128 """
1129
1130 assert self.isvalid()
1131 return self.expected
1132
Guido van Rossum152494a1996-12-20 03:12:20 +00001133if __name__ == '__main__':
Barry Warsaw408b6d32002-07-30 23:27:12 +00001134 # Remove regrtest.py's own directory from the module search path. This
1135 # prevents relative imports from working, and relative imports will screw
1136 # up the testing framework. E.g. if both test.test_support and
1137 # test_support are imported, they will not contain the same globals, and
1138 # much of the testing framework relies on the globals in the
1139 # test.test_support module.
1140 mydir = os.path.abspath(os.path.normpath(os.path.dirname(sys.argv[0])))
1141 i = pathlen = len(sys.path)
1142 while i >= 0:
1143 i -= 1
1144 if os.path.abspath(os.path.normpath(sys.path[i])) == mydir:
1145 del sys.path[i]
1146 if len(sys.path) == pathlen:
1147 print 'Could not find %r in sys.path to remove it' % mydir
Barry Warsaw08fca522001-08-20 22:33:46 +00001148 main()