diff options
-rw-r--r-- | clang/.gitattributes | 1 | ||||
-rw-r--r-- | clang/test/Lexer/minimize_source_to_dependency_directives_invalid_error.c | 16 |
2 files changed, 0 insertions, 17 deletions
diff --git a/clang/.gitattributes b/clang/.gitattributes index 1f6a5a11329..b48a3e3911a 100644 --- a/clang/.gitattributes +++ b/clang/.gitattributes @@ -1,4 +1,3 @@ # Windows line ending tests test/Lexer/minimize_source_to_dependency_directives_invalid_error.c text eol=crlf test/FixIt/fixit-newline-style.c text eol=crlf -test/Frontend/system-header-line-directive-ms-lineendings.c text eol=crlf diff --git a/clang/test/Lexer/minimize_source_to_dependency_directives_invalid_error.c b/clang/test/Lexer/minimize_source_to_dependency_directives_invalid_error.c deleted file mode 100644 index c4a4cf3d975..00000000000 --- a/clang/test/Lexer/minimize_source_to_dependency_directives_invalid_error.c +++ /dev/null @@ -1,16 +0,0 @@ -// Test CF+LF are properly handled along with quoted, multi-line #error
-// RUN: %clang_cc1 -DOTHER -print-dependency-directives-minimized-source %s 2>&1 | FileCheck %s
-
-#ifndef TEST
-#error "message \
- more message \
- even more"
-#endif
-
-#ifdef OTHER
-#include <string>
-#endif
-
-// CHECK: #ifdef OTHER
-// CHECK-NEXT: #include <string>
-// CHECK-NEXT: #endif
|