| Index: test/cctest/test-threads.cc
|
| diff --git a/test/cctest/test-threads.cc b/test/cctest/test-threads.cc
|
| index 6cc5f523386dcea9ab4cd54a45eb009f36d06b5f..5610f1e6897f132e9dc1e25a75e3b47e269d2708 100644
|
| --- a/test/cctest/test-threads.cc
|
| +++ b/test/cctest/test-threads.cc
|
| @@ -34,7 +34,7 @@
|
|
|
|
|
| TEST(Preemption) {
|
| - v8::Isolate* isolate = CcTest::default_isolate();
|
| + v8::Isolate* isolate = CcTest::isolate();
|
| v8::Locker locker(isolate);
|
| v8::V8::Initialize();
|
| v8::HandleScope scope(isolate);
|
| @@ -69,7 +69,7 @@ class ThreadA : public v8::internal::Thread {
|
| public:
|
| ThreadA() : Thread("ThreadA") { }
|
| void Run() {
|
| - v8::Isolate* isolate = CcTest::default_isolate();
|
| + v8::Isolate* isolate = CcTest::isolate();
|
| v8::Locker locker(isolate);
|
| v8::HandleScope scope(isolate);
|
| v8::Handle<v8::Context> context = v8::Context::New(isolate);
|
| @@ -90,7 +90,7 @@ class ThreadA : public v8::internal::Thread {
|
| turn = CLEAN_CACHE;
|
| do {
|
| {
|
| - v8::Unlocker unlocker(CcTest::default_isolate());
|
| + v8::Unlocker unlocker(CcTest::isolate());
|
| Thread::YieldCPU();
|
| }
|
| } while (turn != SECOND_TIME_FILL_CACHE);
|
| @@ -109,7 +109,7 @@ class ThreadB : public v8::internal::Thread {
|
| void Run() {
|
| do {
|
| {
|
| - v8::Isolate* isolate = CcTest::default_isolate();
|
| + v8::Isolate* isolate = CcTest::isolate();
|
| v8::Locker locker(isolate);
|
| if (turn == CLEAN_CACHE) {
|
| v8::HandleScope scope(isolate);
|
| @@ -117,7 +117,7 @@ class ThreadB : public v8::internal::Thread {
|
| v8::Context::Scope context_scope(context);
|
|
|
| // Clear the caches by forcing major GC.
|
| - HEAP->CollectAllGarbage(v8::internal::Heap::kNoGCFlags);
|
| + CcTest::heap()->CollectAllGarbage(v8::internal::Heap::kNoGCFlags);
|
| turn = SECOND_TIME_FILL_CACHE;
|
| break;
|
| }
|
| @@ -129,7 +129,7 @@ class ThreadB : public v8::internal::Thread {
|
| };
|
|
|
|
|
| -TEST(JSFunctionResultCachesInTwoThreads) {
|
| +UNINITIALIZED_TEST(JSFunctionResultCachesInTwoThreads) {
|
| v8::V8::Initialize();
|
|
|
| ThreadA threadA;
|
|
|