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 | |
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
-rw-r--r-- | clang/test/Index/index-many-call-ops.cpp | 4 | ||||
-rw-r--r-- | clang/test/Index/index-many-logical-ops.c | 4 |
2 files changed, 4 insertions, 4 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()(); diff --git a/clang/test/Index/index-many-logical-ops.c b/clang/test/Index/index-many-logical-ops.c index 0fd4e75236f..fd994a23ac6 100644 --- a/clang/test/Index/index-many-logical-ops.c +++ b/clang/test/Index/index-many-logical-ops.c @@ -4,8 +4,8 @@ // Check that we don't get stack overflow trying to index a huge number of // logical operators. -// UBSan increses stack usage. -// REQUIRES: not_ubsan +// ASan and UBSan increase stack usage. +// REQUIRES: not_asan, not_ubsan // CHECK: [indexDeclaration]: kind: function | name: foo int foo(int x) { |