Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Unified Diff: test/compiler-unittests/compiler-unittests.h

Issue 465913002: Rename COMPILER_TEST to TARGET_TARGET. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/compiler-unittests/compiler-unittests.h
diff --git a/test/compiler-unittests/compiler-unittests.h b/test/compiler-unittests/compiler-unittests.h
index 6d063ee27be22c45afb46d9f7d25967866a5e4bc..aa978a2c52221ef3bb48be5b4f1c11a57f190c64 100644
--- a/test/compiler-unittests/compiler-unittests.h
+++ b/test/compiler-unittests/compiler-unittests.h
@@ -13,23 +13,23 @@ namespace v8 {
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

Powered by Google App Engine
This is Rietveld 408576698