Add sensible information about the OS X platform to diagnose issue #8423:

test_pep277 fails on "x86 Tiger" buildbot but not on "PPC Tiger".
This commit is contained in:
Florent Xicluna 2010-05-13 17:05:29 +00:00
parent 37368163bd
commit b7d413f9bc
1 changed files with 6 additions and 1 deletions

View File

@ -426,7 +426,12 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
# Print basic platform information
print "==", platform.python_implementation(), \
" ".join(sys.version.split())
print "== ", platform.platform(aliased=True)
print "== ", platform.platform(aliased=True), \
"%s-endian" % sys.byteorder,
if sys.platform == 'darwin':
print platform.mac_ver()
else:
print
print "== ", os.getcwd()
alltests = findtests(testdir, stdtests, nottests)