cpython/Lib/test/testall.py

22 lines
658 B
Python
Raw Normal View History

# testall.py -- a regression test for the Python interpreter.
# To run the tests, execute "import testall" in a clean interpreter.
# It is a good idea to do this whenever you build a new interpreter.
# Remember to add new tests when new features are added!
1990-12-26 11:40:07 -04:00
from test_support import *
print 'test_grammar'
forget('test_grammar')
import test_grammar
1990-12-26 11:40:07 -04:00
for t in ['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',
]:
print t
unload(t)
__import__(t, globals(), locals())
1996-12-09 17:49:55 -04:00
1990-12-26 11:40:07 -04:00
print 'Passed all tests.'