diff options
author | Alexey Samsonov <vonosmas@gmail.com> | 2016-02-13 01:02:59 +0000 |
---|---|---|
committer | Alexey Samsonov <vonosmas@gmail.com> | 2016-02-13 01:02:59 +0000 |
commit | 9d307494467381e0481240ddb59f8167d9991cb0 (patch) | |
tree | ff72bd455621c54989d83f1567dd80dc06081fd5 /clang/test/Index/index-many-call-ops.cpp | |
parent | d4cd67ab9ff3bcb64ac532b9e04cd0cd22c42105 (diff) | |
download | bcm5719-llvm-9d307494467381e0481240ddb59f8167d9991cb0.tar.gz bcm5719-llvm-9d307494467381e0481240ddb59f8167d9991cb0.zip |
Disable two tests that use a lot of stack under ASan.
llvm-svn: 260779
Diffstat (limited to 'clang/test/Index/index-many-call-ops.cpp')
-rw-r--r-- | clang/test/Index/index-many-call-ops.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Index/index-many-call-ops.cpp b/clang/test/Index/index-many-call-ops.cpp index 7644697d4e7..b46029cbf8c 100644 --- a/clang/test/Index/index-many-call-ops.cpp +++ b/clang/test/Index/index-many-call-ops.cpp @@ -4,8 +4,8 @@ // Check that we don't get stack overflow trying to index a huge number of // call operators. -// UBSan increses stack usage. -// REQUIRES: not_ubsan +// ASan and UBSan increase stack usage. +// REQUIRES: not_asan, not_ubsan struct S { S &operator()(); |