1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

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

llvm-svn: 341313
This commit is contained in:
Nico Weber 2018-09-03 12:43:26 +00:00
parent 77cd9699b3
commit ec4bd508f5
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
)