summaryrefslogtreecommitdiff
path: root/Lib/test/testall.py
blob: b31dd98e430ff2f02df8c9049f2a6f6eb277e557 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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',
	  ]:
    print t
    unload(t)
    __import__(t, globals(), locals())

print 'Passed all tests.'