projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
658d196
)
Fix (presumably) test_hash under big-endian systems (PPC).
author
Antoine Pitrou
<solipsis@pitrou.net>
Wed, 22 Feb 2012 02:33:56 +0000
(
03:33
+0100)
committer
Antoine Pitrou
<solipsis@pitrou.net>
Wed, 22 Feb 2012 02:33:56 +0000
(
03:33
+0100)
Lib/test/test_hash.py
patch
|
blob
|
history
diff --git
a/Lib/test/test_hash.py
b/Lib/test/test_hash.py
index 137165f378ccbf778c99bf445f2337cb46ceb943..077677983696ea11f40a2671c118dcfe8f624126 100644
(file)
--- a/
Lib/test/test_hash.py
+++ b/
Lib/test/test_hash.py
@@
-169,9
+169,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):