diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2012-02-22 03:33:56 +0100 | 
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-02-22 03:33:56 +0100 | 
| commit | 679be99a85664c485aa237bb7b484ada60a3f623 (patch) | |
| tree | f7ff01fabe874d863a42382a816e0284f20c77f9 | |
| parent | 658d1963e1691357f53f89c466cedb150c1d992a (diff) | |
| download | cpython-git-679be99a85664c485aa237bb7b484ada60a3f623.tar.gz | |
Fix (presumably) test_hash under big-endian systems (PPC).
| -rw-r--r-- | 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 index 137165f378..0776779836 100644 --- 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): | 
