diff options
author | Barry Warsaw <barry@python.org> | 1996-12-10 16:27:16 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1996-12-10 16:27:16 (GMT) |
commit | 0f150e41be9d962f8cdfb5e77c9ff3394b84315c (patch) | |
tree | 717df3fbe8219832662f30ea76b7448741909ce4 /Lib/test/testall.py | |
parent | a6b7c7146c22f8076796b188e6cea7d6ff83a692 (diff) | |
download | cpython-0f150e41be9d962f8cdfb5e77c9ff3394b84315c.zip cpython-0f150e41be9d962f8cdfb5e77c9ff3394b84315c.tar.gz cpython-0f150e41be9d962f8cdfb5e77c9ff3394b84315c.tar.bz2 |
Added test_new.
Diffstat (limited to 'Lib/test/testall.py')
-rw-r--r-- | Lib/test/testall.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Lib/test/testall.py b/Lib/test/testall.py index 4bf0a66..b48accc 100644 --- a/Lib/test/testall.py +++ b/Lib/test/testall.py @@ -3,6 +3,7 @@ # It is a good idea to do this whenever you build a new interpreter. # Remember to add new tests when new features are added! +import sys from test_support import * print 'test_grammar' @@ -12,10 +13,13 @@ 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', - 'test_crypt', 'test_dbm', + 'test_crypt', 'test_dbm', 'test_new', ]: print t unload(t) - __import__(t, globals(), locals()) + try: + __import__(t, globals(), locals()) + except ImportError, msg: + sys.stderr.write('%s. Uninstalled optional module?\n' % msg) print 'Passed all tests.' |