]> granicus.if.org Git - python/commitdiff
Backport from 2.7 branch.
authorBarry Warsaw <barry@python.org>
Wed, 22 Feb 2012 18:34:18 +0000 (13:34 -0500)
committerBarry Warsaw <barry@python.org>
Wed, 22 Feb 2012 18:34:18 +0000 (13:34 -0500)
    changeset:   75165:780008020c40
    user:        Antoine Pitrou <solipsis@pitrou.net>
    date:        Wed Feb 22 03:33:56 2012 +0100
    summary:     Fix (presumably) test_hash under big-endian systems (PPC).

Lib/test/test_hash.py

index 94306ec4a1214d93fc5ed3f8130b1e52318bb47b..c0ca8e179f1e5d382d2cc6fc4bd76a0f58e47e2a 100644 (file)
@@ -187,9 +187,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):