projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2bbc919
)
Add Mips to the list of target architectures for the MCJIT tests.
author
Akira Hatanaka
<ahatanaka@mips.com>
Thu, 21 Jun 2012 20:23:32 +0000
(20:23 +0000)
committer
Akira Hatanaka
<ahatanaka@mips.com>
Thu, 21 Jun 2012 20:23:32 +0000
(20:23 +0000)
Patch by Reed Kotler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158933
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/ExecutionEngine/MCJIT/lit.local.cfg
patch
|
blob
|
history
diff --git
a/test/ExecutionEngine/MCJIT/lit.local.cfg
b/test/ExecutionEngine/MCJIT/lit.local.cfg
index ba81a44946343659a8c722151d5edc9409e0fbfe..2980ce70811c1f5debd81064529eb5fb4ba44c06 100644
(file)
--- a/
test/ExecutionEngine/MCJIT/lit.local.cfg
+++ b/
test/ExecutionEngine/MCJIT/lit.local.cfg
@@
-8,12
+8,12
@@
def getRoot(config):
root = getRoot(config)
targets = set(root.targets_to_build.split())
-if ('X86' in targets) | ('ARM' in targets):
+if ('X86' in targets) | ('ARM' in targets)
| ('Mips' in targets)
:
config.unsupported = False
else:
config.unsupported = True
-if root.host_arch not in ['x86', 'x86_64', 'ARM']:
+if root.host_arch not in ['x86', 'x86_64', 'ARM'
, 'Mips'
]:
config.unsupported = True
if root.host_os in ['Win32', 'Cygwin', 'MingW', 'Windows', 'Darwin']: