| Index: test/cctest/test-api.cc
|
| diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
|
| index a6046a8f919f64fb229ccba1a869b0fcd48a1530..a085e3bef7881e5df7f47222de78f6d7f78d2ef4 100644
|
| --- a/test/cctest/test-api.cc
|
| +++ b/test/cctest/test-api.cc
|
| @@ -1,4 +1,5 @@
|
| // Copyright 2012 the V8 project authors. All rights reserved.
|
| +
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -10777,18 +10778,24 @@ TEST(DontLeakGlobalObjects) {
|
| { v8::HandleScope scope;
|
| LocalContext context;
|
| }
|
| + // Fire context disposed notification to force clearing monomorphic ICs.
|
| + v8::V8::ContextDisposedNotification();
|
| CheckSurvivingGlobalObjectsCount(0);
|
|
|
| { v8::HandleScope scope;
|
| LocalContext context;
|
| v8_compile("Date")->Run();
|
| }
|
| + // Fire context disposed notification to force clearing monomorphic ICs.
|
| + v8::V8::ContextDisposedNotification();
|
| CheckSurvivingGlobalObjectsCount(0);
|
|
|
| { v8::HandleScope scope;
|
| LocalContext context;
|
| v8_compile("/aaa/")->Run();
|
| }
|
| + // Fire context disposed notification to force clearing monomorphic ICs.
|
| + v8::V8::ContextDisposedNotification();
|
| CheckSurvivingGlobalObjectsCount(0);
|
|
|
| { v8::HandleScope scope;
|
| @@ -10797,6 +10804,8 @@ TEST(DontLeakGlobalObjects) {
|
| LocalContext context(&extensions);
|
| v8_compile("gc();")->Run();
|
| }
|
| + // Fire context disposed notification to force clearing monomorphic ICs.
|
| + v8::V8::ContextDisposedNotification();
|
| CheckSurvivingGlobalObjectsCount(0);
|
| }
|
| }
|
| @@ -14626,6 +14635,7 @@ TEST(Regress528) {
|
| context->Exit();
|
| }
|
| context.Dispose();
|
| + v8::V8::ContextDisposedNotification();
|
| for (gc_count = 1; gc_count < 10; gc_count++) {
|
| other_context->Enter();
|
| CompileRun(source_exception);
|
|
|