Skip to content
This repository has been archived by the owner on Oct 16, 2021. It is now read-only.

Commit

Permalink
test: Add runner support for s390/s390x
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlau committed Oct 5, 2015
1 parent 52b6153 commit 1923782
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,8 @@ def GetTestStatus(self, context, sections, defs):
'armv6' : { 'debug' : 12, 'release' : 3 }, # The ARM buildbots are slow.
'arm' : { 'debug' : 8, 'release' : 2 },
'ia32' : { 'debug' : 4, 'release' : 1 },
'ppc' : { 'debug' : 4, 'release' : 1 } }
'ppc' : { 'debug' : 4, 'release' : 1 },
's390' : { 'debug' : 4, 'release' : 1 } }


class Context(object):
Expand Down
2 changes: 2 additions & 0 deletions tools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ def GuessArchitecture():
return 'ia32'
elif id.startswith('ppc'):
return 'ppc'
elif id == 's390x':
return 's390'
else:
id = platform.processor()
if id == 'powerpc':
Expand Down

0 comments on commit 1923782

Please sign in to comment.