]> granicus.if.org Git - clang/commitdiff
Replace 'REQUIRES: not_?san' with 'UNSUPPORTED: ?san' as that better
authorPaul Robinson <paul.robinson@sony.com>
Fri, 10 May 2019 17:57:22 +0000 (17:57 +0000)
committerPaul Robinson <paul.robinson@sony.com>
Fri, 10 May 2019 17:57:22 +0000 (17:57 +0000)
expresses the intent of the exclusion.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@360447 91177308-0d34-0410-b5e6-96231b3b80d8

test/Index/annotate-deep-statements.cpp
test/Index/index-many-call-ops.cpp
test/Index/index-many-logical-ops.c
test/SemaTemplate/instantiation-depth-default.cpp

index 1803c2bacf5e75df72bfeae7410ed0c7344e9cbd..fb420a25f0b86cbe0b83d66cda002c52a1a16c20 100644 (file)
@@ -4,7 +4,7 @@
 // Check that we don't get stack overflow trying to annotate an extremely deep AST.
 
 // AddressSanitizer and UndefinedBehaviorSanitizer increases stack usage.
-// REQUIRES: not_asan, not_ubsan
+// UNSUPPORTED: asan, ubsan
 
 struct S {
   S &operator()();
index 7644697d4e7cbc0c88cb891b3c4de1404496617e..d89facd93135aab35b12c268300b2853028c1293 100644 (file)
@@ -5,7 +5,7 @@
 // call operators.
 
 // UBSan increses stack usage.
-// REQUIRES: not_ubsan
+// UNSUPPORTED: ubsan
 
 struct S {
   S &operator()();
index 7940a21a39b7f3e375a757df5492b6110f505789..4ef6ee9a9c9465e5288057ef981e6019d9c8518c 100644 (file)
@@ -5,7 +5,7 @@
 // logical operators.
 
 // UBSan increases stack usage.
-// REQUIRES: not_ubsan
+// UNSUPPORTED: ubsan
 
 // CHECK: [indexDeclaration]: kind: function | name: foo
 int foo(int x) {
index 69efa253e3fed7cf66ef8b7e3682ee5e38d966d2..9d8b6cc7356516f36e679749450b30385bb625b1 100644 (file)
@@ -3,7 +3,7 @@
 // FIXME: Disable this test when Clang was built with ASan, because ASan
 // increases our per-frame stack usage enough that this test no longer fits
 // within our normal stack space allocation.
-// REQUIRES: not_asan
+// UNSUPPORTED: asan
 
 template<int N, typename T> struct X : X<N+1, T*> {};
 // expected-error-re@8 {{recursive template instantiation exceeded maximum depth of 1024{{$}}}}