diff options
author | Alexey Samsonov <vonosmas@gmail.com> | 2014-09-03 19:46:32 +0000 |
---|---|---|
committer | Alexey Samsonov <vonosmas@gmail.com> | 2014-09-03 19:46:32 +0000 |
commit | 3205b5167399823eaa954233f6282de6a5603214 (patch) | |
tree | 0e994bb588b861749c51533a40a97194b6df84ad /clang/test/Index/index-many-call-ops.cpp | |
parent | bfc6b954ac2cc50d9ae13d9711a6a5b04643c268 (diff) | |
download | bcm5719-llvm-3205b5167399823eaa954233f6282de6a5603214.tar.gz bcm5719-llvm-3205b5167399823eaa954233f6282de6a5603214.zip |
Add ubsan/not_ubsan features to Clang lit tests and use
them to exclude tests with large stack usage from UBSan bootstrap.
llvm-svn: 217064
Diffstat (limited to 'clang/test/Index/index-many-call-ops.cpp')
-rw-r--r-- | clang/test/Index/index-many-call-ops.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/Index/index-many-call-ops.cpp b/clang/test/Index/index-many-call-ops.cpp index e732b5f188a..7644697d4e7 100644 --- a/clang/test/Index/index-many-call-ops.cpp +++ b/clang/test/Index/index-many-call-ops.cpp @@ -4,6 +4,9 @@ // Check that we don't get stack overflow trying to index a huge number of // call operators. +// UBSan increses stack usage. +// REQUIRES: not_ubsan + struct S { S &operator()(); }; |