summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/MCJIT/lit.local.cfg
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-06-03 19:17:21 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-06-03 19:17:21 +0000
commitd1100b3325a84e28ed4b6fcc89eaeaf5b61b300a (patch)
tree542d669c6cfbdaaa67db49806c20eef852bd9f00 /test/ExecutionEngine/MCJIT/lit.local.cfg
parente5fcc0dee4b41658986047f346201ad98757e7d5 (diff)
downloadllvm-d1100b3325a84e28ed4b6fcc89eaeaf5b61b300a.tar.gz
llvm-d1100b3325a84e28ed4b6fcc89eaeaf5b61b300a.tar.bz2
llvm-d1100b3325a84e28ed4b6fcc89eaeaf5b61b300a.tar.xz
Enable mcjit tests on ppc64 when building with cmake.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183143 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, 3 insertions, 1 deletions
diff --git a/test/ExecutionEngine/MCJIT/lit.local.cfg b/test/ExecutionEngine/MCJIT/lit.local.cfg
index 9f0552a50f..f21468ffa2 100644
--- a/test/ExecutionEngine/MCJIT/lit.local.cfg
+++ b/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: