Revision: 23070
Author:   [email protected]
Date:     Tue Aug 12 09:48:52 2014 UTC
Log:      Rename COMPILER_TEST to TARGET_TARGET.

The name COMPILER_TEST is misleading here.

[email protected]

Review URL: https://codereview.chromium.org/465913002
http://code.google.com/p/v8/source/detail?r=23070

Modified:
/branches/bleeding_edge/test/compiler-unittests/arm/instruction-selector-arm-unittest.cc
 /branches/bleeding_edge/test/compiler-unittests/compiler-unittests.h
/branches/bleeding_edge/test/compiler-unittests/instruction-selector-unittest.cc

=======================================
--- /branches/bleeding_edge/test/compiler-unittests/arm/instruction-selector-arm-unittest.cc Fri Aug 8 07:04:07 2014 UTC +++ /branches/bleeding_edge/test/compiler-unittests/arm/instruction-selector-arm-unittest.cc Tue Aug 12 09:48:52 2014 UTC
@@ -11,7 +11,7 @@
 class InstructionSelectorARMTest : public InstructionSelectorTest {};


-COMPILER_TEST_F(InstructionSelectorARMTest, Int32AddP) {
+TARGET_TEST_F(InstructionSelectorARMTest, Int32AddP) {
   StreamBuilder m(this, kMachineWord32, kMachineWord32, kMachineWord32);
   m.Return(m.Int32Add(m.Parameter(0), m.Parameter(1)));
   Stream s = m.Build();
=======================================
--- /branches/bleeding_edge/test/compiler-unittests/compiler-unittests.h Tue Aug 12 08:24:20 2014 UTC +++ /branches/bleeding_edge/test/compiler-unittests/compiler-unittests.h Tue Aug 12 09:48:52 2014 UTC
@@ -13,23 +13,23 @@
 namespace internal {
 namespace compiler {

-// The COMPILER_TEST(Case, Name) macro works just like
+// The TARGET_TEST(Case, Name) macro works just like
 // TEST(Case, Name), except that the test is disabled
 // if the platform is not a supported TurboFan target.
 #if V8_TURBOFAN_TARGET
-#define COMPILER_TEST(Case, Name) TEST(Case, Name)
+#define TARGET_TEST(Case, Name) TEST(Case, Name)
 #else
-#define COMPILER_TEST(Case, Name) TEST(Case, DISABLED_##Name)
+#define TARGET_TEST(Case, Name) TEST(Case, DISABLED_##Name)
 #endif


-// The COMPILER_TEST_F(Case, Name) macro works just like
+// The TARGET_TEST_F(Case, Name) macro works just like
 // TEST_F(Case, Name), except that the test is disabled
 // if the platform is not a supported TurboFan target.
 #if V8_TURBOFAN_TARGET
-#define COMPILER_TEST_F(Case, Name) TEST_F(Case, Name)
+#define TARGET_TEST_F(Case, Name) TEST_F(Case, Name)
 #else
-#define COMPILER_TEST_F(Case, Name) TEST_F(Case, DISABLED_##Name)
+#define TARGET_TEST_F(Case, Name) TEST_F(Case, DISABLED_##Name)
 #endif


=======================================
--- /branches/bleeding_edge/test/compiler-unittests/instruction-selector-unittest.cc Fri Aug 8 07:04:07 2014 UTC +++ /branches/bleeding_edge/test/compiler-unittests/instruction-selector-unittest.cc Tue Aug 12 09:48:52 2014 UTC
@@ -62,7 +62,7 @@
 }


-COMPILER_TEST_F(InstructionSelectorTest, ReturnP) {
+TARGET_TEST_F(InstructionSelectorTest, ReturnP) {
   StreamBuilder m(this, kMachineWord32, kMachineWord32);
   m.Return(m.Parameter(0));
   Stream s = m.Build(kAllInstructions);
@@ -74,7 +74,7 @@
 }


-COMPILER_TEST_F(InstructionSelectorTest, ReturnImm) {
+TARGET_TEST_F(InstructionSelectorTest, ReturnImm) {
   StreamBuilder m(this, kMachineWord32);
   m.Return(m.Int32Constant(0));
   Stream s = m.Build(kAllInstructions);

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to