diff options
author | 2017-12-21 14:28:35 +0000 | |
---|---|---|
committer | 2017-12-21 14:57:31 +0000 | |
commit | 5e399b8715f3cb153ddb619a7c47515583799db3 (patch) | |
tree | ff88905149497482b079ab4cb8c2caaec05cc498 /compiler/optimizing | |
parent | ffc3be6b4a58c1ed172a5c890f8b8583a416998f (diff) |
ART: Rename cloner_test.
Rename cloner_test to superblock_cloner_test to be
consistent with the test naming conventioni as a new
SuperblockCloner file is arriving.
Test: superblock_cloner_test.cc.
Change-Id: I066a20b4599de6c59b83676bb11295135a512791
Diffstat (limited to 'compiler/optimizing')
-rw-r--r-- | compiler/optimizing/superblock_cloner_test.cc (renamed from compiler/optimizing/cloner_test.cc) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/optimizing/cloner_test.cc b/compiler/optimizing/superblock_cloner_test.cc index d34dd81767..fd77eb81fc 100644 --- a/compiler/optimizing/cloner_test.cc +++ b/compiler/optimizing/superblock_cloner_test.cc @@ -24,9 +24,9 @@ namespace art { // This class provides methods and helpers for testing various cloning and copying routines: // individual instruction cloning and cloning of the more coarse-grain structures. -class ClonerTest : public OptimizingUnitTest { +class SuperblockClonerTest : public OptimizingUnitTest { public: - ClonerTest() + SuperblockClonerTest() : graph_(CreateGraph()), entry_block_(nullptr), exit_block_(nullptr), parameter_(nullptr) {} void CreateBasicLoopControlFlow(/* out */ HBasicBlock** header_p, @@ -154,7 +154,7 @@ class ClonerTest : public OptimizingUnitTest { HInstruction* parameter_; }; -TEST_F(ClonerTest, IndividualInstrCloner) { +TEST_F(SuperblockClonerTest, IndividualInstrCloner) { HBasicBlock* header = nullptr; HBasicBlock* loop_body = nullptr; |