blob: cca7dbdd68fa7d8bcf51735c576da07557ceb5bc [file] [log] [blame]
Barry Warsaw272c00b1996-12-10 19:51:10 +00001# This file now contains only the list of separate regression tests.
2# All of the testing harness is now contained in autotest.py.
Guido van Rossum217a5fa1990-12-26 15:40:07 +00003
Barry Warsaw272c00b1996-12-10 19:51:10 +00004tests = ['test_grammar',
5 'test_opcodes',
6 'test_operations',
7 'test_builtin',
8 'test_exceptions',
9 'test_types',
10 'test_math',
11 'test_time',
12 'test_array',
13 'test_strop',
14 'test_md5',
15 'test_cmath',
16 'test_crypt',
17 'test_dbm',
18 'test_new',
Barry Warsaw78226811996-12-11 01:01:09 +000019 'test_nis',
Barry Warsawebfa2c41996-12-11 16:52:56 +000020 'test_pwd',
Barry Warsaw8bc74ce1996-12-11 21:41:42 +000021 'test_rgbimg',
Barry Warsaw272c00b1996-12-10 19:51:10 +000022 ]
Barry Warsaw2e644a01996-12-10 23:10:39 +000023
24if __name__ == '__main__':
25 # low-overhead testing, for cases where autotest.py harness
26 # doesn't even work!
27 import sys
28 from test_support import *
29
30 for t in tests:
31 print t
32 unload(t)
33 try:
34 __import__(t, globals(), locals())
35 except ImportError, msg:
36## sys.stderr.write('%s. Uninstalled optional module?\n' % msg)
37 pass
38
39 print 'Passed all tests.'