diff options
Diffstat (limited to 'clang/test/Sema')
-rw-r--r-- | clang/test/Sema/format-strings-fixit-ssize_t.c | 1 | ||||
-rw-r--r-- | clang/test/Sema/format-strings-fixit.c | 1 | ||||
-rw-r--r-- | clang/test/Sema/format-strings-no-fixit.c | 1 | ||||
-rw-r--r-- | clang/test/Sema/warn-documentation-almost-trailing.c | 1 | ||||
-rw-r--r-- | clang/test/Sema/warn-strncat-size.c | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/clang/test/Sema/format-strings-fixit-ssize_t.c b/clang/test/Sema/format-strings-fixit-ssize_t.c index 6e8e49bf97e..5208a294a48 100644 --- a/clang/test/Sema/format-strings-fixit-ssize_t.c +++ b/clang/test/Sema/format-strings-fixit-ssize_t.c @@ -2,7 +2,6 @@ // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -pedantic -Wall -fixit %t // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -pedantic -Wall -Werror %t // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -E -o - %t | FileCheck %s -// REQUIRES: rewriter /* This is a test of the various code modification hints that are provided as part of warning or extension diagnostics. All of the diff --git a/clang/test/Sema/format-strings-fixit.c b/clang/test/Sema/format-strings-fixit.c index 098c7e05cad..b982eb45e5f 100644 --- a/clang/test/Sema/format-strings-fixit.c +++ b/clang/test/Sema/format-strings-fixit.c @@ -2,7 +2,6 @@ // RUN: %clang_cc1 -pedantic -Wall -fixit %t // RUN: %clang_cc1 -fsyntax-only -pedantic -Wall -Werror %t // RUN: %clang_cc1 -E -o - %t | FileCheck %s -// REQUIRES: rewriter /* This is a test of the various code modification hints that are provided as part of warning or extension diagnostics. All of the diff --git a/clang/test/Sema/format-strings-no-fixit.c b/clang/test/Sema/format-strings-no-fixit.c index 7371fde735c..701e945f690 100644 --- a/clang/test/Sema/format-strings-no-fixit.c +++ b/clang/test/Sema/format-strings-no-fixit.c @@ -1,7 +1,6 @@ // RUN: cp %s %t // RUN: %clang_cc1 -fsyntax-only -fixit %t // RUN: %clang_cc1 -E -o - %t | FileCheck %s -// REQUIRES: rewriter /* This is a test of the various code modification hints that are provided as part of warning or extension diagnostics. Only diff --git a/clang/test/Sema/warn-documentation-almost-trailing.c b/clang/test/Sema/warn-documentation-almost-trailing.c index e3dee2977a9..9ff71a3bce3 100644 --- a/clang/test/Sema/warn-documentation-almost-trailing.c +++ b/clang/test/Sema/warn-documentation-almost-trailing.c @@ -3,7 +3,6 @@ // RUN: cp %s %t // RUN: %clang_cc1 -fsyntax-only -Wdocumentation -fixit %t // RUN: %clang_cc1 -fsyntax-only -Wdocumentation -Werror %t -// REQUIRES: rewriter struct a { int x; //< comment // expected-warning {{not a Doxygen trailing comment}} diff --git a/clang/test/Sema/warn-strncat-size.c b/clang/test/Sema/warn-strncat-size.c index 0b74b21d583..dcc3367e949 100644 --- a/clang/test/Sema/warn-strncat-size.c +++ b/clang/test/Sema/warn-strncat-size.c @@ -2,7 +2,6 @@ // RUN: %clang_cc1 -DUSE_BUILTINS -Wstrncat-size -verify -fsyntax-only %s // RUN: %clang_cc1 -fsyntax-only -Wstrncat-size -fixit -x c %s // RUN: %clang_cc1 -DUSE_BUILTINS -fsyntax-only -Wstrncat-size -fixit -x c %s -// REQUIRES: rewriter typedef __SIZE_TYPE__ size_t; size_t strlen (const char *s); |