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.
This commit is contained in:
Tim Peters 2006-03-14 22:48:56 +00:00
parent 915d7773e2
commit 903d846a69
2 changed files with 2 additions and 10 deletions

View file

@ -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')