From 2b22f6ae96c28269008649bcefe172f8658acb18 Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Tue, 3 Dec 2013 13:48:28 +0000 Subject: [PATCH] Fix lit config for disabled MCJIT tests on ARM Separating permanent from temporary targets, added the bug that will fix the temporary (PR18057). llvm-svn: 196274 --- llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg b/llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg index e811339957b2..23628f6181db 100644 --- a/llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg +++ b/llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg @@ -1,2 +1,8 @@ -if 'arm' in config.root.target_triple: +if 'armv4' in config.root.target_triple or \ + 'armv5' in config.root.target_triple: + config.unsupported = True + +# This is temporary, until Remote MCJIT works on ARM +# See http://llvm.org/bugs/show_bug.cgi?id=18057 +if 'armv7' in config.root.target_triple: config.unsupported = True