diff options
author | Jyotsna Verma <jverma@codeaurora.org> | 2013-03-25 21:15:11 +0000 |
---|---|---|
committer | Jyotsna Verma <jverma@codeaurora.org> | 2013-03-25 21:15:11 +0000 |
commit | 1f7fe8044750ba348064699b5f52244b48234dfe (patch) | |
tree | 19225ce8b78347e0ea45f5828449d81214ba3f80 | |
parent | 15e8583814d97b196b5dd2f30906be5aaef33520 (diff) |
Disable profiling tests for Hexagon since it doesn't support JIT.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177917 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis/Profiling/lit.local.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Analysis/Profiling/lit.local.cfg b/test/Analysis/Profiling/lit.local.cfg index d507d3fd71..444b7dc274 100644 --- a/test/Analysis/Profiling/lit.local.cfg +++ b/test/Analysis/Profiling/lit.local.cfg @@ -11,3 +11,6 @@ root = getRoot(config) # doesn't have any JIT at present so they will fail when run there. if root.host_arch in ['AArch64']: config.unsupported = True + +if 'hexagon' in root.target_triple: + config.unsupported = True |