From: Hans Wennborg Date: Wed, 28 Aug 2019 09:14:00 +0000 (+0000) Subject: Delete minimize_source_to_dependency_directives_invalid_error.c X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=07ec8da1ca5707fe8bd00d4fef4da88f9011bd17;p=clang Delete minimize_source_to_dependency_directives_invalid_error.c It was added in r370129 with a .gitattributes file that means the file always shows up as having a local diff in Git checkouts (at least on Linux). Deleting it until we can figure out the right way to do this. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@370175 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/.gitattributes b/.gitattributes index 1f6a5a1132..b48a3e3911 100644 --- a/.gitattributes +++ b/.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/test/Lexer/minimize_source_to_dependency_directives_invalid_error.c b/test/Lexer/minimize_source_to_dependency_directives_invalid_error.c deleted file mode 100644 index c4a4cf3d97..0000000000 --- a/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 -#endif - -// CHECK: #ifdef OTHER -// CHECK-NEXT: #include -// CHECK-NEXT: #endif