Rename a few unittests/.../Foo.cpp files to FooTest.cpp

The convention for unit test sources is that they're called FooTest.cpp.

No behavior change.
https://reviews.llvm.org/D51579


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@341313 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nico Weber 2018-09-03 12:43:26 +00:00
parent cccbfeb670
commit 0985a4407d
12 changed files with 10 additions and 10 deletions

View File

@ -18,15 +18,15 @@ add_llvm_unittest(AnalysisTests
LazyCallGraphTest.cpp
LoopInfoTest.cpp
MemoryBuiltinsTest.cpp
MemorySSA.cpp
MemorySSATest.cpp
OrderedBasicBlockTest.cpp
OrderedInstructions.cpp
OrderedInstructionsTest.cpp
PhiValuesTest.cpp
ProfileSummaryInfoTest.cpp
ScalarEvolutionTest.cpp
SparsePropagation.cpp
TargetLibraryInfoTest.cpp
TBAATest.cpp
UnrollAnalyzer.cpp
UnrollAnalyzerTest.cpp
ValueTrackingTest.cpp
)

View File

@ -8,12 +8,12 @@ set(LLVM_LINK_COMPONENTS
add_llvm_unittest(UtilsTests
ASanStackFrameLayoutTest.cpp
BasicBlockUtils.cpp
Cloning.cpp
CodeExtractor.cpp
FunctionComparator.cpp
IntegerDivision.cpp
Local.cpp
SSAUpdaterBulk.cpp
BasicBlockUtilsTest.cpp
CloningTest.cpp
CodeExtractorTest.cpp
FunctionComparatorTest.cpp
IntegerDivisionTest.cpp
LocalTest.cpp
SSAUpdaterBulkTest.cpp
ValueMapperTest.cpp
)