diff options
| author | Nico Weber <nicolasweber@gmx.de> | 2018-09-03 12:43:26 +0000 |
|---|---|---|
| committer | Nico Weber <nicolasweber@gmx.de> | 2018-09-03 12:43:26 +0000 |
| commit | 8267b333ee9aaa7cedc6d8aab6ddf15629d9e255 (patch) | |
| tree | 1e1efbcc60829d02625e8e6d5c4b149626be0eaf | |
| parent | d8e7ed6457b1ecad3ec2dc41151092e5a637540c (diff) | |
| download | bcm5719-llvm-8267b333ee9aaa7cedc6d8aab6ddf15629d9e255.tar.gz bcm5719-llvm-8267b333ee9aaa7cedc6d8aab6ddf15629d9e255.zip | |
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
| -rw-r--r-- | llvm/unittests/Analysis/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | llvm/unittests/Analysis/MemorySSATest.cpp (renamed from llvm/unittests/Analysis/MemorySSA.cpp) | 0 | ||||
| -rw-r--r-- | llvm/unittests/Analysis/OrderedInstructionsTest.cpp (renamed from llvm/unittests/Analysis/OrderedInstructions.cpp) | 0 | ||||
| -rw-r--r-- | llvm/unittests/Analysis/UnrollAnalyzerTest.cpp (renamed from llvm/unittests/Analysis/UnrollAnalyzer.cpp) | 0 | ||||
| -rw-r--r-- | llvm/unittests/Transforms/Utils/BasicBlockUtilsTest.cpp (renamed from llvm/unittests/Transforms/Utils/BasicBlockUtils.cpp) | 0 | ||||
| -rw-r--r-- | llvm/unittests/Transforms/Utils/CMakeLists.txt | 14 | ||||
| -rw-r--r-- | llvm/unittests/Transforms/Utils/CloningTest.cpp (renamed from llvm/unittests/Transforms/Utils/Cloning.cpp) | 0 | ||||
| -rw-r--r-- | llvm/unittests/Transforms/Utils/CodeExtractorTest.cpp (renamed from llvm/unittests/Transforms/Utils/CodeExtractor.cpp) | 0 | ||||
| -rw-r--r-- | llvm/unittests/Transforms/Utils/FunctionComparatorTest.cpp (renamed from llvm/unittests/Transforms/Utils/FunctionComparator.cpp) | 0 | ||||
| -rw-r--r-- | llvm/unittests/Transforms/Utils/IntegerDivisionTest.cpp (renamed from llvm/unittests/Transforms/Utils/IntegerDivision.cpp) | 0 | ||||
| -rw-r--r-- | llvm/unittests/Transforms/Utils/LocalTest.cpp (renamed from llvm/unittests/Transforms/Utils/Local.cpp) | 0 | ||||
| -rw-r--r-- | llvm/unittests/Transforms/Utils/SSAUpdaterBulkTest.cpp (renamed from llvm/unittests/Transforms/Utils/SSAUpdaterBulk.cpp) | 0 |
12 files changed, 10 insertions, 10 deletions
diff --git a/llvm/unittests/Analysis/CMakeLists.txt b/llvm/unittests/Analysis/CMakeLists.txt index 8ad0570bc4d..06af85e3f55 100644 --- a/llvm/unittests/Analysis/CMakeLists.txt +++ b/llvm/unittests/Analysis/CMakeLists.txt @@ -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 ) diff --git a/llvm/unittests/Analysis/MemorySSA.cpp b/llvm/unittests/Analysis/MemorySSATest.cpp index 76a49196ac3..76a49196ac3 100644 --- a/llvm/unittests/Analysis/MemorySSA.cpp +++ b/llvm/unittests/Analysis/MemorySSATest.cpp diff --git a/llvm/unittests/Analysis/OrderedInstructions.cpp b/llvm/unittests/Analysis/OrderedInstructionsTest.cpp index dc1b25b8c02..dc1b25b8c02 100644 --- a/llvm/unittests/Analysis/OrderedInstructions.cpp +++ b/llvm/unittests/Analysis/OrderedInstructionsTest.cpp diff --git a/llvm/unittests/Analysis/UnrollAnalyzer.cpp b/llvm/unittests/Analysis/UnrollAnalyzerTest.cpp index 937e69f0c25..937e69f0c25 100644 --- a/llvm/unittests/Analysis/UnrollAnalyzer.cpp +++ b/llvm/unittests/Analysis/UnrollAnalyzerTest.cpp diff --git a/llvm/unittests/Transforms/Utils/BasicBlockUtils.cpp b/llvm/unittests/Transforms/Utils/BasicBlockUtilsTest.cpp index 2d0a9302011..2d0a9302011 100644 --- a/llvm/unittests/Transforms/Utils/BasicBlockUtils.cpp +++ b/llvm/unittests/Transforms/Utils/BasicBlockUtilsTest.cpp diff --git a/llvm/unittests/Transforms/Utils/CMakeLists.txt b/llvm/unittests/Transforms/Utils/CMakeLists.txt index 7b36521f774..13c321b38a1 100644 --- a/llvm/unittests/Transforms/Utils/CMakeLists.txt +++ b/llvm/unittests/Transforms/Utils/CMakeLists.txt @@ -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 ) diff --git a/llvm/unittests/Transforms/Utils/Cloning.cpp b/llvm/unittests/Transforms/Utils/CloningTest.cpp index 9a1ad19ebaa..9a1ad19ebaa 100644 --- a/llvm/unittests/Transforms/Utils/Cloning.cpp +++ b/llvm/unittests/Transforms/Utils/CloningTest.cpp diff --git a/llvm/unittests/Transforms/Utils/CodeExtractor.cpp b/llvm/unittests/Transforms/Utils/CodeExtractorTest.cpp index c229be6d695..c229be6d695 100644 --- a/llvm/unittests/Transforms/Utils/CodeExtractor.cpp +++ b/llvm/unittests/Transforms/Utils/CodeExtractorTest.cpp diff --git a/llvm/unittests/Transforms/Utils/FunctionComparator.cpp b/llvm/unittests/Transforms/Utils/FunctionComparatorTest.cpp index 26e20cd9112..26e20cd9112 100644 --- a/llvm/unittests/Transforms/Utils/FunctionComparator.cpp +++ b/llvm/unittests/Transforms/Utils/FunctionComparatorTest.cpp diff --git a/llvm/unittests/Transforms/Utils/IntegerDivision.cpp b/llvm/unittests/Transforms/Utils/IntegerDivisionTest.cpp index e337b9f547a..e337b9f547a 100644 --- a/llvm/unittests/Transforms/Utils/IntegerDivision.cpp +++ b/llvm/unittests/Transforms/Utils/IntegerDivisionTest.cpp diff --git a/llvm/unittests/Transforms/Utils/Local.cpp b/llvm/unittests/Transforms/Utils/LocalTest.cpp index 9dc920d0938..9dc920d0938 100644 --- a/llvm/unittests/Transforms/Utils/Local.cpp +++ b/llvm/unittests/Transforms/Utils/LocalTest.cpp diff --git a/llvm/unittests/Transforms/Utils/SSAUpdaterBulk.cpp b/llvm/unittests/Transforms/Utils/SSAUpdaterBulkTest.cpp index 61cbcb7b1a7..61cbcb7b1a7 100644 --- a/llvm/unittests/Transforms/Utils/SSAUpdaterBulk.cpp +++ b/llvm/unittests/Transforms/Utils/SSAUpdaterBulkTest.cpp |

