[clang-tools-extra] r374549 - [ClangTidy] Separate tests for infrastructure and checkers, fixup

Dmitri Gribenko via cfe-commits cfe-commits at lists.llvm.org
Fri Oct 11 06:16:50 PDT 2019


Author: gribozavr
Date: Fri Oct 11 06:16:49 2019
New Revision: 374549

URL: http://llvm.org/viewvc/llvm-project?rev=374549&view=rev
Log:
[ClangTidy] Separate tests for infrastructure and checkers, fixup

Renamed a file that I missed in r374540.

Added:
    clang-tools-extra/trunk/test/clang-tidy/checkers/Inputs/Headers/stdio.h
Removed:
    clang-tools-extra/trunk/test/clang-tidy/infrastructure/Inputs/Headers/stdio.h

Added: clang-tools-extra/trunk/test/clang-tidy/checkers/Inputs/Headers/stdio.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clang-tidy/checkers/Inputs/Headers/stdio.h?rev=374549&view=auto
==============================================================================
--- clang-tools-extra/trunk/test/clang-tidy/checkers/Inputs/Headers/stdio.h (added)
+++ clang-tools-extra/trunk/test/clang-tidy/checkers/Inputs/Headers/stdio.h Fri Oct 11 06:16:49 2019
@@ -0,0 +1,18 @@
+//===--- stdio.h - Stub header for tests ------------------------*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef _STDIO_H_
+#define _STDIO_H_
+
+// A header intended to contain C standard input and output library
+// declarations.
+
+int printf(const char *, ...);
+
+#endif // _STDIO_H_
+

Removed: clang-tools-extra/trunk/test/clang-tidy/infrastructure/Inputs/Headers/stdio.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clang-tidy/infrastructure/Inputs/Headers/stdio.h?rev=374548&view=auto
==============================================================================
--- clang-tools-extra/trunk/test/clang-tidy/infrastructure/Inputs/Headers/stdio.h (original)
+++ clang-tools-extra/trunk/test/clang-tidy/infrastructure/Inputs/Headers/stdio.h (removed)
@@ -1,18 +0,0 @@
-//===--- stdio.h - Stub header for tests ------------------------*- C++ -*-===//
-//
-// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
-// See https://llvm.org/LICENSE.txt for license information.
-// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef _STDIO_H_
-#define _STDIO_H_
-
-// A header intended to contain C standard input and output library
-// declarations.
-
-int printf(const char *, ...);
-
-#endif // _STDIO_H_
-




More information about the cfe-commits mailing list