diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-03-14 22:48:56 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-03-14 22:48:56 +0000 |
commit | 903d846a69b6a837495c00b26bd4bbcb3835e26f (patch) | |
tree | 56f8509a01dd4e6ce7fb1b0c25d59b38245cb04c /Lib/test/regrtest.py | |
parent | 915d7773e297326cb7ce3ad0ff97b35fe95bafee (diff) | |
download | cpython-git-903d846a69b6a837495c00b26bd4bbcb3835e26f.tar.gz |
Renamed test_hashlib_speed.py to time_hashlib.py.
Since it's never intended that this script be run by
regrtest.py, it shouldn't have been named with a "test_"
prefix to begin with. A consequence is that we shouldn't
see useless:
test_hashlib_speed skipped -- not a unit test (stand alone benchmark)
lines in regrtest output anymore.
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index b4c229ac4b..b8509129c8 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -1136,9 +1136,6 @@ class _ExpectedSkips: s = _expectations[sys.platform] self.expected = set(s.split()) - # this isn't a regularly run unit test, it is always skipped - self.expected.add('test_hashlib_speed') - if not os.path.supports_unicode_filenames: self.expected.add('test_pep277') |