diff options
author | Jyotsna Verma <jverma@codeaurora.org> | 2013-03-25 20:02:14 +0000 |
---|---|---|
committer | Jyotsna Verma <jverma@codeaurora.org> | 2013-03-25 20:02:14 +0000 |
commit | 3cf2dba90fcb6478db64205d936f67e4adf96719 (patch) | |
tree | 808b560a6391d85968405f309ea4b819dbaab6e1 | |
parent | 8b2824a1b21fe7bd3908774feb5f79c98cc7d9a2 (diff) |
Disable Execution Engine tests not supported by Hexagon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177896 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/ExecutionEngine/lit.local.cfg | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ExecutionEngine/lit.local.cfg b/test/ExecutionEngine/lit.local.cfg index dd6a5bb240..1f8ae69b98 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 |