r260779 - Disable two tests that use a lot of stack under ASan.

Alexey Samsonov via cfe-commits cfe-commits at lists.llvm.org
Fri Feb 12 17:02:59 PST 2016


Author: samsonov
Date: Fri Feb 12 19:02:59 2016
New Revision: 260779

URL: http://llvm.org/viewvc/llvm-project?rev=260779&view=rev
Log:
Disable two tests that use a lot of stack under ASan.

Modified:
    cfe/trunk/test/Index/index-many-call-ops.cpp
    cfe/trunk/test/Index/index-many-logical-ops.c

Modified: cfe/trunk/test/Index/index-many-call-ops.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Index/index-many-call-ops.cpp?rev=260779&r1=260778&r2=260779&view=diff
==============================================================================
--- cfe/trunk/test/Index/index-many-call-ops.cpp (original)
+++ cfe/trunk/test/Index/index-many-call-ops.cpp Fri Feb 12 19:02:59 2016
@@ -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()();

Modified: cfe/trunk/test/Index/index-many-logical-ops.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Index/index-many-logical-ops.c?rev=260779&r1=260778&r2=260779&view=diff
==============================================================================
--- cfe/trunk/test/Index/index-many-logical-ops.c (original)
+++ cfe/trunk/test/Index/index-many-logical-ops.c Fri Feb 12 19:02:59 2016
@@ -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) {




More information about the cfe-commits mailing list