blob: 9d680b10b979ce5062f1182bab71f1581f362972 [file] [log] [blame]
# 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!
from test_support import *
print 'test_grammar'
forget('test_grammar')
import test_grammar
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',
]:
print t
unload(t)
__import__(t, globals(), locals())
print 'Passed all tests.'