summaryrefslogtreecommitdiff
path: root/test/Lexer
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2019-08-28 09:14:00 +0000
committerHans Wennborg <hans@hanshq.net>2019-08-28 09:14:00 +0000
commit07ec8da1ca5707fe8bd00d4fef4da88f9011bd17 (patch)
treefd628689cd41d9b3ae9da723e0d8a64cb6a74a30 /test/Lexer
parent6889e9024e91fa7cb8fef430f2902b6eba901c20 (diff)
downloadclang-07ec8da1ca5707fe8bd00d4fef4da88f9011bd17.tar.gz
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
Diffstat (limited to 'test/Lexer')
-rw-r--r--test/Lexer/minimize_source_to_dependency_directives_invalid_error.c16
1 files changed, 0 insertions, 16 deletions
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 <string>
-#endif
-
-// CHECK: #ifdef OTHER
-// CHECK-NEXT: #include <string>
-// CHECK-NEXT: #endif