From 07fc4841b1e438db1cfb0d24fb06556cd99aa14b Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Tue, 3 Dec 2013 08:39:15 +0000 Subject: [PATCH] Disable Remote MCJIT tests on ARM The communication protocol is unstable on ARM when compiled with Clang, which is disrupting the self-hosting buildbots that are going to be added this week. I'm working on a solution, but remote MCJIT is not high-priority for ARM at the moment, so it might take a while. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196257 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/ExecutionEngine/MCJIT/remote/lit.local.cfg | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/ExecutionEngine/MCJIT/remote/lit.local.cfg b/test/ExecutionEngine/MCJIT/remote/lit.local.cfg index 6b192ae44be..e811339957b 100644 --- a/test/ExecutionEngine/MCJIT/remote/lit.local.cfg +++ b/test/ExecutionEngine/MCJIT/remote/lit.local.cfg @@ -1,3 +1,2 @@ -if 'armv4' in config.root.target_triple or \ - 'armv5' in config.root.target_triple: +if 'arm' in config.root.target_triple: config.unsupported = True