diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-02-22 02:33:56 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-02-22 02:33:56 (GMT) |
commit | 4b670f541c488b20f5ec2237fb4eefd0fc5ffba7 (patch) | |
tree | 8a419a2a7fe501836f9df82d1ecf0f5722b5fa08 /Lib | |
parent | f00011aff4e5b0986a0f0d36ba324c0ca8b983d1 (diff) | |
download | cpython-4b670f541c488b20f5ec2237fb4eefd0fc5ffba7.zip cpython-4b670f541c488b20f5ec2237fb4eefd0fc5ffba7.tar.gz cpython-4b670f541c488b20f5ec2237fb4eefd0fc5ffba7.tar.bz2 |
Fix (presumably) test_hash under big-endian systems (PPC).
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_hash.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Lib/test/test_hash.py b/Lib/test/test_hash.py index eb75545..dec7dcb 100644 --- a/Lib/test/test_hash.py +++ b/Lib/test/test_hash.py @@ -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): |