~milo/+junk/python-linaro

« back to all changes in this revision

Viewing changes to Lib/test/test_platform.py

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-03-09 23:23:55 UTC
  • mfrom: (36.1.11 sid)
  • Revision ID: package-import@ubuntu.com-20120309232355-syhmsoce7nubjxgl
Tags: 2.7.3~rc1-1ubuntu1
* Merge with Debian; remaining changes:
  - Build-depend on libdb5.1-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
191
191
            self.assertEqual(res[1], ('', '', ''))
192
192
 
193
193
            if sys.byteorder == 'little':
194
 
                self.assertEqual(res[2], 'i386')
 
194
                self.assertIn(res[2], ('i386', 'x86_64'))
195
195
            else:
196
196
                self.assertEqual(res[2], 'PowerPC')
197
197