summaryrefslogtreecommitdiffstats
path: root/Lib/test/testall.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-11-27 22:53:50 (GMT)
committerGuido van Rossum <guido@python.org>1992-11-27 22:53:50 (GMT)
commit85f1820ee15faec7961056ace378f2d444419c1c (patch)
tree41ccba707377e7df1229b0dd8806217dee497fbc /Lib/test/testall.py
parentd014ea6b5efbfb3d143fc8aacf8bee733cf4c8f0 (diff)
downloadcpython-85f1820ee15faec7961056ace378f2d444419c1c.zip
cpython-85f1820ee15faec7961056ace378f2d444419c1c.tar.gz
cpython-85f1820ee15faec7961056ace378f2d444419c1c.tar.bz2
Added some new tests and two new files for testing: test_types.py
(testing operations on built-in types) and autotest.py (automatic regression testing).
Diffstat (limited to 'Lib/test/testall.py')
-rw-r--r--Lib/test/testall.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/testall.py b/Lib/test/testall.py
index 5f17be1..92e7b9f 100644
--- a/Lib/test/testall.py
+++ b/Lib/test/testall.py
@@ -25,4 +25,8 @@ print 'test_exceptions'
unload('test_exceptions')
import test_exceptions
+print 'test_types'
+unload('test_types')
+import test_types
+
print 'Passed all tests.'