5 #ifndef V8_COMPILER_COMPILER_TEST_UTILS_H_
6 #define V8_COMPILER_COMPILER_TEST_UTILS_H_
8 #include "testing/gtest/include/gtest/gtest.h"
17 #if V8_TURBOFAN_TARGET
18 #define TARGET_TEST(Case, Name) TEST(Case, Name)
20 #define TARGET_TEST(Case, Name) TEST(Case, DISABLED_##Name)
27 #if V8_TURBOFAN_TARGET
28 #define TARGET_TEST_F(Case, Name) TEST_F(Case, Name)
30 #define TARGET_TEST_F(Case, Name) TEST_F(Case, DISABLED_##Name)
37 #if V8_TURBOFAN_TARGET
38 #define TARGET_TEST_P(Case, Name) TEST_P(Case, Name)
40 #define TARGET_TEST_P(Case, Name) TEST_P(Case, DISABLED_##Name)
47 #if V8_TURBOFAN_TARGET
48 #define TARGET_TYPED_TEST(Case, Name) TYPED_TEST(Case, Name)
50 #define TARGET_TYPED_TEST(Case, Name) TYPED_TEST(Case, DISABLED_##Name)
Debugger support for the V8 JavaScript engine.