blob: e410e8f8bba772fa83e6ad4dcd48ab75fb414a1f [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 Warsaw792c94a1996-12-11 23:58:46 +000022 'test_select',
Guido van Rossum483705c1996-12-12 19:03:11 +000023 'test_strftime',
Barry Warsaw07a0eec1996-12-12 23:34:06 +000024 'test_struct',
Roger E. Masse8ba76d31996-12-16 20:20:33 +000025 'test_errno',
Roger E. Massee00d4da1996-12-16 20:34:43 +000026 'test_dl',
Barry Warsawaf0a1a61996-12-16 23:42:35 +000027 'test_thread',
Barry Warsaw237efc51996-12-17 00:00:17 +000028 'test_xdr',
Roger E. Massefb01d4b1996-12-17 17:41:09 +000029 'test_fcntl',
Roger E. Masse62a017c1996-12-17 19:54:27 +000030 'test_gdbm',
Roger E. Masse749cc6b1996-12-18 19:36:34 +000031 'test_grp',
Barry Warsawa09ec191996-12-18 19:56:22 +000032 'test_operator',
Roger E. Masse47e98301996-12-20 20:49:06 +000033 'test_imageop',
Roger E. Masse033d91b1996-12-20 21:41:50 +000034 'test_imgfile',
Barry Warsaw4b722781996-12-20 22:00:21 +000035 'test_regex',
Barry Warsaw5e056bb1996-12-23 23:39:42 +000036 'test_rotor',
Barry Warsaw272c00b1996-12-10 19:51:10 +000037 ]
Barry Warsaw2e644a01996-12-10 23:10:39 +000038
39if __name__ == '__main__':
40 # low-overhead testing, for cases where autotest.py harness
41 # doesn't even work!
42 import sys
43 from test_support import *
44
45 for t in tests:
46 print t
47 unload(t)
48 try:
49 __import__(t, globals(), locals())
50 except ImportError, msg:
51## sys.stderr.write('%s. Uninstalled optional module?\n' % msg)
52 pass
53
54 print 'Passed all tests.'