Enable MCJIT tests on PowerPC.
[oota-llvm.git] / test / ExecutionEngine / MCJIT / lit.local.cfg
index af3d13f746749ada6675c3254cfeb1b892900868..7bcb9ae82cad358a466ef1a6bce5d3160dd769a5 100644 (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']: