From: Barry Warsaw Date: Tue, 10 Dec 1996 16:27:16 +0000 (+0000) Subject: Added test_new. X-Git-Tag: v1.5a1~814 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0f150e41be9d962f8cdfb5e77c9ff3394b84315c;p=python Added test_new. --- diff --git a/Lib/test/testall.out b/Lib/test/testall.out index fe4813d63c..412cba430b 100644 --- a/Lib/test/testall.out +++ b/Lib/test/testall.out @@ -180,4 +180,5 @@ test_cmath test_crypt Test encryption: abeTm2pJKypwA test_dbm +test_new Passed all tests. diff --git a/Lib/test/testall.py b/Lib/test/testall.py index 4bf0a662cb..b48accc5e8 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.'