summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/MCJIT/lit.local.cfg
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@mips.com>2012-06-21 20:23:32 +0000
committerAkira Hatanaka <ahatanaka@mips.com>2012-06-21 20:23:32 +0000
commit43d2ff1171d6c9c50ac2b3c5dfaea0746aee99d4 (patch)
tree30e5572be11a29446972288e83c98b9b513d3f21 /test/ExecutionEngine/MCJIT/lit.local.cfg
parent2bbc9193b4a9b4e53ec114fd98a587a2917c365b (diff)
downloadllvm-43d2ff1171d6c9c50ac2b3c5dfaea0746aee99d4.tar.gz
llvm-43d2ff1171d6c9c50ac2b3c5dfaea0746aee99d4.tar.bz2
llvm-43d2ff1171d6c9c50ac2b3c5dfaea0746aee99d4.tar.xz
Add Mips to the list of target architectures for the MCJIT tests.
Patch by Reed Kotler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158933 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/MCJIT/lit.local.cfg')
-rw-r--r--test/ExecutionEngine/MCJIT/lit.local.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ExecutionEngine/MCJIT/lit.local.cfg b/test/ExecutionEngine/MCJIT/lit.local.cfg
index ba81a44946..2980ce7081 100644
--- 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']: