From 8dc3b4847fed4a56d7597c8cd559816f03282b9f Mon Sep 17 00:00:00 2001 From: Jyotsna Verma Date: Mon, 25 Mar 2013 20:02:14 +0000 Subject: [PATCH] Disable Execution Engine tests not supported by Hexagon. llvm-svn: 177896 --- test/ExecutionEngine/lit.local.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/ExecutionEngine/lit.local.cfg b/test/ExecutionEngine/lit.local.cfg index dd6a5bb240e..1f8ae69b986 100644 --- a/test/ExecutionEngine/lit.local.cfg +++ b/test/ExecutionEngine/lit.local.cfg @@ -10,3 +10,5 @@ root = getRoot(config) if root.host_arch in ['PowerPC', 'AArch64']: config.unsupported = True +if 'hexagon' in root.target_triple: + config.unsupported = True