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

Side by Side Diff: src/compiler/compiler-test-utils.h

Issue 615393002: Move unit tests to test/unittests. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE Created 6 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/compiler/compiler.gyp ('k') | src/compiler/graph-reducer-unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef V8_COMPILER_COMPILER_TEST_UTILS_H_
6 #define V8_COMPILER_COMPILER_TEST_UTILS_H_
7
8 #include "testing/gtest/include/gtest/gtest.h"
9
10 namespace v8 {
11 namespace internal {
12 namespace compiler {
13
14 // The TARGET_TEST(Case, Name) macro works just like
15 // TEST(Case, Name), except that the test is disabled
16 // if the platform is not a supported TurboFan target.
17 #if V8_TURBOFAN_TARGET
18 #define TARGET_TEST(Case, Name) TEST(Case, Name)
19 #else
20 #define TARGET_TEST(Case, Name) TEST(Case, DISABLED_##Name)
21 #endif
22
23
24 // The TARGET_TEST_F(Case, Name) macro works just like
25 // TEST_F(Case, Name), except that the test is disabled
26 // if the platform is not a supported TurboFan target.
27 #if V8_TURBOFAN_TARGET
28 #define TARGET_TEST_F(Case, Name) TEST_F(Case, Name)
29 #else
30 #define TARGET_TEST_F(Case, Name) TEST_F(Case, DISABLED_##Name)
31 #endif
32
33
34 // The TARGET_TEST_P(Case, Name) macro works just like
35 // TEST_P(Case, Name), except that the test is disabled
36 // if the platform is not a supported TurboFan target.
37 #if V8_TURBOFAN_TARGET
38 #define TARGET_TEST_P(Case, Name) TEST_P(Case, Name)
39 #else
40 #define TARGET_TEST_P(Case, Name) TEST_P(Case, DISABLED_##Name)
41 #endif
42
43
44 // The TARGET_TYPED_TEST(Case, Name) macro works just like
45 // TYPED_TEST(Case, Name), except that the test is disabled
46 // if the platform is not a supported TurboFan target.
47 #if V8_TURBOFAN_TARGET
48 #define TARGET_TYPED_TEST(Case, Name) TYPED_TEST(Case, Name)
49 #else
50 #define TARGET_TYPED_TEST(Case, Name) TYPED_TEST(Case, DISABLED_##Name)
51 #endif
52
53 } // namespace compiler
54 } // namespace internal
55 } // namespace v8
56
57 #endif // V8_COMPILER_COMPILER_TEST_UTILS_H_
OLDNEW
« no previous file with comments | « src/compiler/compiler.gyp ('k') | src/compiler/graph-reducer-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698