diff options
| author | Mark Dickinson <dickinsm@gmail.com> | 2009-10-27 17:02:46 (GMT) |
|---|---|---|
| committer | Mark Dickinson <dickinsm@gmail.com> | 2009-10-27 17:02:46 (GMT) |
| commit | 25567ef13be1c421d18e318c2d80b9a4db7938af (patch) | |
| tree | 5261854106838f9decfe11698d50eb643d2fdebf /Lib/test/test_decimal.py | |
| parent | 9b12553a87c54c9e92b79e934d892e77584fc492 (diff) | |
| download | cpython-25567ef13be1c421d18e318c2d80b9a4db7938af.zip cpython-25567ef13be1c421d18e318c2d80b9a4db7938af.tar.gz cpython-25567ef13be1c421d18e318c2d80b9a4db7938af.tar.bz2 | |
Merged revisions 75286 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75286 | mark.dickinson | 2009-10-08 17:28:39 +0100 (Thu, 08 Oct 2009) | 2 lines
Update decimal test data to the most recent set from Mike Cowlishaw.
........
Diffstat (limited to 'Lib/test/test_decimal.py')
| -rw-r--r-- | Lib/test/test_decimal.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index c671d7b..c0d0a81 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -64,6 +64,13 @@ directory = testdir + os.sep + TESTDATADIR + os.sep skip_expected = not os.path.isdir(directory) +# list of individual .decTest test ids that correspond to tests that +# we're skipping for one reason or another. +skipped_test_ids = [ + 'scbx164', # skipping apparently implementation-specific scaleb + 'scbx165', # tests, pending clarification of scaleb rules. +] + # Make sure it actually raises errors when not expected and caught in flags # Slower, since it runs some things several times. EXTENDEDERRORTEST = False @@ -263,6 +270,10 @@ class DecimalTest(unittest.TestCase): val = val.replace("'", '').replace('"', '') val = val.replace('SingleQuote', "'").replace('DoubleQuote', '"') return val + + if id in skipped_test_ids: + return + fname = nameAdapter.get(funct, funct) if fname == 'rescale': return |
