summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-22 02:33:56 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-22 02:33:56 (GMT)
commitc09424255a5f1d9a108c14f974cfc55b2f4734f3 (patch)
tree84382f5bfa2e2696bf0895c95a1b6be688452543 /Lib
parent4f22a8d739494d188ba0b4430ca86d93e1ed30d2 (diff)
downloadcpython-c09424255a5f1d9a108c14f974cfc55b2f4734f3.zip
cpython-c09424255a5f1d9a108c14f974cfc55b2f4734f3.tar.gz
cpython-c09424255a5f1d9a108c14f974cfc55b2f4734f3.tar.bz2
Fix (presumably) test_hash under big-endian systems (PPC).
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_hash.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/Lib/test/test_hash.py b/Lib/test/test_hash.py
index 8253610..c0dd34d 100644
--- a/Lib/test/test_hash.py
+++ b/Lib/test/test_hash.py
@@ -170,9 +170,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):