Enable MCJIT tests on PowerPC.

Disable old JIT tests on PowerPC.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168316 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ulrich Weigand 2012-11-19 17:57:07 +00:00
parent 9fb61cd15b
commit 948d9f743e
2 changed files with 14 additions and 2 deletions

View File

@ -8,12 +8,13 @@ def getRoot(config):
root = getRoot(config)
targets = set(root.targets_to_build.split())
if ('X86' in targets) | ('ARM' in targets) | ('Mips' in targets):
if ('X86' in targets) | ('ARM' in targets) | ('Mips' in targets) | \
('PowerPC' in targets):
config.unsupported = False
else:
config.unsupported = True
if root.host_arch not in ['x86', 'x86_64', 'ARM', 'Mips']:
if root.host_arch not in ['x86', 'x86_64', 'ARM', 'Mips', 'PowerPC']:
config.unsupported = True
if root.host_os in ['Darwin']:

View File

@ -1 +1,12 @@
config.suffixes = ['.ll', '.c', '.cpp']
def getRoot(config):
if not config.parent:
return config
return getRoot(config.parent)
root = getRoot(config)
if root.host_arch in ['PowerPC']:
config.unsupported = True