From: Renato Golin Date: Mon, 20 May 2013 07:46:06 +0000 (+0000) Subject: Disable remote MCJIT on pre-v6 ARM X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=3a408fa8789b902f6fb1d8f256f9d00dd27e9619;p=oota-llvm.git Disable remote MCJIT on pre-v6 ARM git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182235 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/ExecutionEngine/MCJIT/remote/lit.local.cfg b/test/ExecutionEngine/MCJIT/remote/lit.local.cfg new file mode 100644 index 00000000000..39b2a950ae3 --- /dev/null +++ b/test/ExecutionEngine/MCJIT/remote/lit.local.cfg @@ -0,0 +1,11 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +def getRoot(config): + if not config.parent: + return config + return getRoot(config.parent) + +root = getRoot(config) + +if 'armv4' in root.target_triple or 'armv5' in root.target_triple: + config.unsupported = True