[pseudo] Rename Tests.cpp => Test.cpp

To be consistent with other files in clang unittest directory.
This commit is contained in:
Haojian Wu 2022-02-04 09:31:53 +01:00
parent c680eeab30
commit 2189960e65
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ set(LLVM_LINK_COMPONENTS
)
add_clang_unittest(ClangPseudoTests
GrammarTests.cpp
GrammarTest.cpp
)
clang_target_link_libraries(ClangPseudoTests

View File

@ -1,4 +1,4 @@
//===--- GrammarTests.cpp - grammar tests ----------------------*- C++ -*-===//
//===--- GrammarTest.cpp - grammar 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.

View File

@ -10,5 +10,5 @@ unittest("ClangPseudoTests") {
"//llvm/lib/Support",
"//llvm/lib/Testing/Support",
]
sources = [ "GrammarTests.cpp" ]
sources = [ "GrammarTest.cpp" ]
}