cpython/Lib/test/testall.py

43 lines
883 B
Python
Raw Normal View History

# This file now contains only the list of separate regression tests.
# All of the testing harness is now contained in autotest.py.
1990-12-26 11:40:07 -04:00
tests = ['test_grammar',
'test_opcodes',
'test_operations',
'test_builtin',
'test_exceptions',
'test_types',
'test_math',
'test_time',
'test_array',
'test_strop',
'test_md5',
'test_cmath',
'test_crypt',
'test_dbm',
'test_new',
1996-12-10 21:01:09 -04:00
'test_nis',
1996-12-11 12:52:56 -04:00
'test_pwd',
1996-12-11 17:41:42 -04:00
'test_rgbimg',
'test_select',
1996-12-12 15:03:11 -04:00
'test_strftime',
1996-12-12 19:34:06 -04:00
'test_struct',
]
if __name__ == '__main__':
# low-overhead testing, for cases where autotest.py harness
# doesn't even work!
import sys
from test_support import *
for t in tests:
print t
unload(t)
try:
__import__(t, globals(), locals())
except ImportError, msg:
## sys.stderr.write('%s. Uninstalled optional module?\n' % msg)
pass
print 'Passed all tests.'