Staging
v0.5.1
swh:1:snp:635f4099902912592851108bcac178ff574f7c5f
Raw File
Tip revision: e2aaa9dd61632e48da08372dfb7f3365ed6d663b authored by cvs2svn on 14 February 1995, 00:58:59 UTC
This commit was manufactured by cvs2svn to create tag 'r12beta3'.
Tip revision: e2aaa9d
testall.py
# 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

print 'test_opcodes'
unload('test_opcodes')
import test_opcodes

print 'test_operations'
unload('test_operations')
import test_operations

print 'test_builtin'
unload('test_builtin')
import test_builtin

print 'test_exceptions'
unload('test_exceptions')
import test_exceptions

print 'test_types'
unload('test_types')
import test_types

print 'Passed all tests.'
back to top