diff --git a/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg b/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg --- a/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg +++ b/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg @@ -1,6 +1,6 @@ root = config.root targets = root.targets -if ( +if not ( ("X86" in targets) | ("AArch64" in targets) | ("ARM" in targets) @@ -8,8 +8,6 @@ | ("PowerPC" in targets) | ("SystemZ" in targets) ): - config.unsupported = False -else: config.unsupported = True # FIXME: autoconf and cmake produce different arch names. We should normalize @@ -21,6 +19,7 @@ "AMD64", "AArch64", "ARM", + "armv7", "Mips", "PowerPC", "ppc64", @@ -29,9 +28,6 @@ ]: config.unsupported = True -if "armv7" in root.host_arch: - config.unsupported = False - if "i386-apple-darwin" in root.target_triple: config.unsupported = True