diff options
author | Raymond Hettinger <python@rcn.com> | 2004-07-01 11:01:35 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-07-01 11:01:35 (GMT) |
commit | 7c85fa4a5203912aca564ce719a0fdd0fd5411e5 (patch) | |
tree | 6e36321b63337cb115f3ef1cdea79a7637b78a84 /Lib/test/regrtest.py | |
parent | 2ccf5d689bc1b893fc89ba3f5131a5f504dff1cd (diff) | |
download | cpython-7c85fa4a5203912aca564ce719a0fdd0fd5411e5.zip cpython-7c85fa4a5203912aca564ce719a0fdd0fd5411e5.tar.gz cpython-7c85fa4a5203912aca564ce719a0fdd0fd5411e5.tar.bz2 |
Move Decimal from the sandbox into production.
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index d16de6b..d461589 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -71,6 +71,9 @@ resources to test. Currently only the following are defined: bsddb - It is okay to run the bsddb testsuite, which takes a long time to complete. + decimal - Test the decimal module against a large suite that + verifies compliance with standards. + To enable all resources except one, use '-uall,-<resource>'. For example, to run all the tests except for the bsddb tests, give the option '-uall,-bsddb'. @@ -112,7 +115,8 @@ if sys.platform == 'darwin': from test import test_support -RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network', 'bsddb') +RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network', 'bsddb', + 'decimal') def usage(code, msg=''): |