[Python-checkins] cpython (2.7): Fix (presumably) test_hash under big-endian systems (PPC).

antoine.pitrou python-checkins at python.org
Wed Feb 22 19:27:11 CET 2012


http://hg.python.org/cpython/rev/251e54259f21
changeset:   75180:251e54259f21
branch:      2.7
parent:      75167:179bc7557484
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Wed Feb 22 03:33:56 2012 +0100
summary:
  Fix (presumably) test_hash under big-endian systems (PPC).

files:
  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
--- a/Lib/test/test_hash.py
+++ b/Lib/test/test_hash.py
@@ -188,9 +188,15 @@
         # 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):

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list