OLD | NEW |
1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 v8::Persistent<v8::Context> CcTest::context_; | 84 v8::Persistent<v8::Context> CcTest::context_; |
85 | 85 |
86 | 86 |
87 void CcTest::InitializeVM(CcTestExtensionFlags extensions) { | 87 void CcTest::InitializeVM(CcTestExtensionFlags extensions) { |
88 const char* extension_names[kMaxExtensions]; | 88 const char* extension_names[kMaxExtensions]; |
89 int extension_count = 0; | 89 int extension_count = 0; |
90 #define CHECK_EXTENSION_FLAG(Name, Id) \ | 90 #define CHECK_EXTENSION_FLAG(Name, Id) \ |
91 if (extensions.Contains(Name##_ID)) extension_names[extension_count++] = Id; | 91 if (extensions.Contains(Name##_ID)) extension_names[extension_count++] = Id; |
92 EXTENSION_LIST(CHECK_EXTENSION_FLAG) | 92 EXTENSION_LIST(CHECK_EXTENSION_FLAG) |
93 #undef CHECK_EXTENSION_FLAG | 93 #undef CHECK_EXTENSION_FLAG |
94 v8::Isolate* isolate = default_isolate(); | 94 v8::Isolate* isolate = CcTest::isolate(); |
95 if (context_.IsEmpty()) { | 95 if (context_.IsEmpty()) { |
96 v8::HandleScope scope(isolate); | 96 v8::HandleScope scope(isolate); |
97 v8::ExtensionConfiguration config(extension_count, extension_names); | 97 v8::ExtensionConfiguration config(extension_count, extension_names); |
98 v8::Local<v8::Context> context = v8::Context::New(isolate, &config); | 98 v8::Local<v8::Context> context = v8::Context::New(isolate, &config); |
99 context_.Reset(isolate, context); | 99 context_.Reset(isolate, context); |
100 } | 100 } |
101 { | 101 { |
102 v8::HandleScope scope(isolate); | 102 v8::HandleScope scope(isolate); |
103 v8::Local<v8::Context> context = | 103 v8::Local<v8::Context> context = |
104 v8::Local<v8::Context>::New(isolate, context_); | 104 v8::Local<v8::Context>::New(isolate, context_); |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 } | 190 } |
191 } | 191 } |
192 if (print_run_count && tests_run != 1) | 192 if (print_run_count && tests_run != 1) |
193 printf("Ran %i tests.\n", tests_run); | 193 printf("Ran %i tests.\n", tests_run); |
194 v8::V8::Dispose(); | 194 v8::V8::Dispose(); |
195 return 0; | 195 return 0; |
196 } | 196 } |
197 | 197 |
198 RegisterThreadedTest *RegisterThreadedTest::first_ = NULL; | 198 RegisterThreadedTest *RegisterThreadedTest::first_ = NULL; |
199 int RegisterThreadedTest::count_ = 0; | 199 int RegisterThreadedTest::count_ = 0; |
OLD | NEW |