comparison mx/commands.py @ 6558:0a6d8857306d

arch is i86pc on solaris x64 boxes.
author Laurent Daynes <Laurent.Daynes@oracle.com>
date Fri, 19 Oct 2012 10:18:40 +0200
parents edea9ba7ac7b
children ef48be91f5fd
comparison
equal deleted inserted replaced
6557:297543799769 6558:0a6d8857306d
274 if len(failed) != 0: 274 if len(failed) != 0:
275 mx.abort('Scala DaCapo failures: ' + str(failed)) 275 mx.abort('Scala DaCapo failures: ' + str(failed))
276 276
277 def _arch(): 277 def _arch():
278 machine = platform.uname()[4] 278 machine = platform.uname()[4]
279 if machine in ['amd64', 'AMD64', 'x86_64']: 279 if machine in ['amd64', 'AMD64', 'x86_64', 'i86pc']:
280 return 'amd64' 280 return 'amd64'
281 mx.abort('unsupported or unknown machine type: ' + machine) 281 mx.abort('unsupported or unknown machine type: ' + machine)
282 282
283 def _vmLibDirInJdk(jdk): 283 def _vmLibDirInJdk(jdk):
284 """ 284 """