Fix (presumably) test_hash under big-endian systems (PPC).

This commit is contained in:
Antoine Pitrou 2012-02-22 03:33:56 +01:00
parent f00011aff4
commit 4b670f541c
1 changed files with 8 additions and 2 deletions

View File

@ -188,9 +188,15 @@ class StringlikeHashRandomizationTests(HashRandomizationTests):
# test a fixed seed for the randomized hash
# Note that all types share the same values:
if IS_64BIT:
h = -4410911502303878509
if sys.byteorder == 'little':
h = -4410911502303878509
else:
h = -3570150969479994130
else:
h = -206076799
if sys.byteorder == 'little':
h = -206076799
else:
h = -1024014457
self.assertEqual(self.get_hash(self.repr_, seed=42), h)
class StrHashRandomizationTests(StringlikeHashRandomizationTests):