From 3a408fa8789b902f6fb1d8f256f9d00dd27e9619 Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Mon, 20 May 2013 07:46:06 +0000 Subject: [PATCH] Disable remote MCJIT on pre-v6 ARM git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182235 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/ExecutionEngine/MCJIT/remote/lit.local.cfg | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/ExecutionEngine/MCJIT/remote/lit.local.cfg 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 -- 2.34.1