diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-03 19:17:21 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-03 19:17:21 +0000 |
commit | f102438f3a3215deb516059d8d003b18fdb125bd (patch) | |
tree | 719ae68987e6ae45a0c211fa4d7fbce19b6e16b4 /llvm/test/ExecutionEngine | |
parent | ea7cef08698e84bdca322ce20f1b77b9bfc51891 (diff) | |
download | bcm5719-llvm-f102438f3a3215deb516059d8d003b18fdb125bd.tar.gz bcm5719-llvm-f102438f3a3215deb516059d8d003b18fdb125bd.zip |
Enable mcjit tests on ppc64 when building with cmake.
llvm-svn: 183143
Diffstat (limited to 'llvm/test/ExecutionEngine')
-rw-r--r-- | llvm/test/ExecutionEngine/MCJIT/lit.local.cfg | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg b/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg index 9f0552a50f0..f21468ffa24 100644 --- a/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg +++ b/llvm/test/ExecutionEngine/MCJIT/lit.local.cfg @@ -14,8 +14,10 @@ if ('X86' in targets) | ('AArch64' in targets) | ('ARM' in targets) | \ else: config.unsupported = True +# 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', - 'AArch64', 'ARM', 'Mips', 'PowerPC', 'SystemZ']: + 'AArch64', 'ARM', 'Mips', 'PowerPC', 'ppc64', 'SystemZ']: config.unsupported = True if 'armv7' in root.host_arch: |