From 6a9005b4eb957f21020804f77f9f58ab6a957b98 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 22 Feb 2012 13:34:18 -0500 Subject: [PATCH] Backport from 2.7 branch. changeset: 75165:780008020c40 user: Antoine Pitrou date: Wed Feb 22 03:33:56 2012 +0100 summary: Fix (presumably) test_hash under big-endian systems (PPC). --- Lib/test/test_hash.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_hash.py b/Lib/test/test_hash.py index 94306ec4a12..c0ca8e179f1 100644 --- a/Lib/test/test_hash.py +++ b/Lib/test/test_hash.py @@ -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):