diff options
Diffstat (limited to 'llvm/test/ExecutionEngine/MCJIT/lit.local.cfg')
| -rw-r--r-- | llvm/test/ExecutionEngine/MCJIT/lit.local.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg b/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg index f9814035773..229f9e50085 100644 --- a/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg +++ b/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg @@ -8,8 +8,8 @@ else: # FIXME: autoconf and cmake produce different arch names. We should normalize # them before getting here. -if root.host_arch not in ['i386', 'x86', 'x86_64', 'AMD64', - 'AArch64', 'ARM', 'Mips', 'PowerPC', 'ppc64', 'SystemZ']: +if root.host_arch.lower() not in ['i386', 'x86', 'x86_64', 'amd64', 'aarch64', + 'arm', 'mips', 'powerpc', 'ppc64', 'systemz']: config.unsupported = True if 'armv7' in root.host_arch: |

