summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/lit.local.cfg
diff options
context:
space:
mode:
authorUlrich Weigand <ulrich.weigand@de.ibm.com>2012-11-19 17:57:07 +0000
committerUlrich Weigand <ulrich.weigand@de.ibm.com>2012-11-19 17:57:07 +0000
commit948d9f743eba1f83c7591d2a2933df06ad471329 (patch)
treefc1530c5dfef6750b7b83b3de848a3b6c1bacf05 /test/ExecutionEngine/lit.local.cfg
parent9fb61cd15b3aa1ac3389cc56872c538b573fefa3 (diff)
downloadllvm-948d9f743eba1f83c7591d2a2933df06ad471329.tar.gz
llvm-948d9f743eba1f83c7591d2a2933df06ad471329.tar.bz2
llvm-948d9f743eba1f83c7591d2a2933df06ad471329.tar.xz
Enable MCJIT tests on PowerPC.
Disable old JIT tests on PowerPC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168316 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/lit.local.cfg')
-rw-r--r--test/ExecutionEngine/lit.local.cfg11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/ExecutionEngine/lit.local.cfg b/test/ExecutionEngine/lit.local.cfg
index 19eebc0ac7..f0343263db 100644
--- a/test/ExecutionEngine/lit.local.cfg
+++ b/test/ExecutionEngine/lit.local.cfg
@@ -1 +1,12 @@
config.suffixes = ['.ll', '.c', '.cpp']
+
+def getRoot(config):
+ if not config.parent:
+ return config
+ return getRoot(config.parent)
+
+root = getRoot(config)
+
+if root.host_arch in ['PowerPC']:
+ config.unsupported = True
+