Remove accidentally committed file.
authorZachary Turner <zturner@google.com>
Fri, 12 Aug 2016 18:39:05 +0000 (18:39 +0000)
committerZachary Turner <zturner@google.com>
Fri, 12 Aug 2016 18:39:05 +0000 (18:39 +0000)
llvm-svn: 278547

clang-tools-extra/test/clang-tidy/clang-cl-driver.cpp [deleted file]

diff --git a/clang-tools-extra/test/clang-tidy/clang-cl-driver.cpp b/clang-tools-extra/test/clang-tidy/clang-cl-driver.cpp
deleted file mode 100644 (file)
index 57511f3..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// RUN: clang-tidy -checks=-*,modernize-use-nullptr %s -- clang-cl /DTEST1 /DFOO=foo /DBAR=bar | FileCheck -implicit-check-not="{{warning|error}}:" %s
-int *a = 0;
-// CHECK: :[[@LINE-1]]:10: warning: use nullptr
-#ifdef TEST1
-int *b = 0;
-// CHECK: :[[@LINE-1]]:10: warning: use nullptr
-#endif
-#define foo 1
-#define bar 1
-#if FOO
-int *c = 0;
-// CHECK: :[[@LINE-1]]:10: warning: use nullptr
-#endif
-#if BAR
-int *d = 0;
-// CHECK: :[[@LINE-1]]:10: warning: use nullptr
-#endif
\ No newline at end of file