OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_COMPILER_UNITTESTS_COMPILER_UNITTESTS_H_ | 5 #ifndef V8_COMPILER_UNITTESTS_COMPILER_UNITTESTS_H_ |
6 #define V8_COMPILER_UNITTESTS_COMPILER_UNITTESTS_H_ | 6 #define V8_COMPILER_UNITTESTS_COMPILER_UNITTESTS_H_ |
7 | 7 |
8 #include "include/v8.h" | 8 #include "include/v8.h" |
9 #include "src/zone.h" | 9 #include "src/zone.h" |
10 #include "testing/gtest-support.h" | 10 #include "testing/gtest-support.h" |
(...skipping 30 matching lines...) Expand all Loading... |
41 #else | 41 #else |
42 #define TARGET_TYPED_TEST(Case, Name) TYPED_TEST(Case, DISABLED_##Name) | 42 #define TARGET_TYPED_TEST(Case, Name) TYPED_TEST(Case, DISABLED_##Name) |
43 #endif | 43 #endif |
44 | 44 |
45 | 45 |
46 class CompilerTest : public ::testing::Test { | 46 class CompilerTest : public ::testing::Test { |
47 public: | 47 public: |
48 CompilerTest(); | 48 CompilerTest(); |
49 virtual ~CompilerTest(); | 49 virtual ~CompilerTest(); |
50 | 50 |
| 51 Factory* factory() const; |
51 Isolate* isolate() const { return reinterpret_cast<Isolate*>(isolate_); } | 52 Isolate* isolate() const { return reinterpret_cast<Isolate*>(isolate_); } |
52 Zone* zone() { return &zone_; } | 53 Zone* zone() { return &zone_; } |
53 | 54 |
54 static void SetUpTestCase(); | 55 static void SetUpTestCase(); |
55 static void TearDownTestCase(); | 56 static void TearDownTestCase(); |
56 | 57 |
57 private: | 58 private: |
58 static v8::Isolate* isolate_; | 59 static v8::Isolate* isolate_; |
59 v8::Isolate::Scope isolate_scope_; | 60 v8::Isolate::Scope isolate_scope_; |
60 v8::HandleScope handle_scope_; | 61 v8::HandleScope handle_scope_; |
61 v8::Context::Scope context_scope_; | 62 v8::Context::Scope context_scope_; |
62 Zone zone_; | 63 Zone zone_; |
63 }; | 64 }; |
64 | 65 |
65 } // namespace compiler | 66 } // namespace compiler |
66 } // namespace internal | 67 } // namespace internal |
67 } // namespace v8 | 68 } // namespace v8 |
68 | 69 |
69 #endif // V8_COMPILER_UNITTESTS_COMPILER_UNITTESTS_H_ | 70 #endif // V8_COMPILER_UNITTESTS_COMPILER_UNITTESTS_H_ |
OLD | NEW |