diff --git a/test/ExecutionEngine/MCJIT/lit.local.cfg b/test/ExecutionEngine/MCJIT/lit.local.cfg index ba81a449463..2980ce70811 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']: