Revision: 15227
Author:   [email protected]
Date:     Thu Jun 20 03:04:53 2013
Log: Abort incremental marking in stress gc tests whenever we expect a full collection after executing CollectAllGarbage.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/17482003
http://code.google.com/p/v8/source/detail?r=15227

Modified:
 /branches/bleeding_edge/test/cctest/test-weaktypedarrays.cc

=======================================
--- /branches/bleeding_edge/test/cctest/test-weaktypedarrays.cc Wed Jun 19 04:53:30 2013 +++ /branches/bleeding_edge/test/cctest/test-weaktypedarrays.cc Thu Jun 20 03:04:53 2013
@@ -85,7 +85,6 @@


 TEST(WeakArrayBuffersFromApi) {
-  i::FLAG_stress_compaction = false;
   v8::V8::Initialize();
   LocalContext context;
   Isolate* isolate = GetIsolateFrom(&context);
@@ -104,7 +103,7 @@
       CHECK(HasArrayBufferInWeakList(isolate->heap(), *iab1));
       CHECK(HasArrayBufferInWeakList(isolate->heap(), *iab2));
     }
-    isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags);
+    isolate->heap()->CollectAllGarbage(Heap::kAbortIncrementalMarkingMask);
     CHECK_EQ(1, CountArrayBuffersInWeakList(isolate->heap()));
     {
       HandleScope scope2(isolate);
@@ -114,7 +113,7 @@
     }
   }

-  isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags);
+  isolate->heap()->CollectAllGarbage(Heap::kAbortIncrementalMarkingMask);
   CHECK_EQ(0, CountArrayBuffersInWeakList(isolate->heap()));
 }

@@ -155,7 +154,7 @@
       i::ScopedVector<char> source(1024);
       i::OS::SNPrintF(source, "ab%d = null;", i);
       CompileRun(source.start());
-      isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags);
+ isolate->heap()->CollectAllGarbage(Heap::kAbortIncrementalMarkingMask);

       CHECK_EQ(2, CountArrayBuffersInWeakList(isolate->heap()));

@@ -174,7 +173,7 @@
       CompileRun("ab1 = null; ab2 = null; ab3 = null;");
     }

-    isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags);
+    isolate->heap()->CollectAllGarbage(Heap::kAbortIncrementalMarkingMask);
     CHECK_EQ(0, CountArrayBuffersInWeakList(isolate->heap()));
   }
 }
@@ -201,12 +200,12 @@
       CHECK(HasTypedArrayInWeakList(*iab, *ita1));
       CHECK(HasTypedArrayInWeakList(*iab, *ita2));
     }
-    isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags);
+    isolate->heap()->CollectAllGarbage(Heap::kAbortIncrementalMarkingMask);
     CHECK_EQ(1, CountTypedArrays(*iab));
     Handle<JSTypedArray> ita1 = v8::Utils::OpenHandle(*ta1);
     CHECK(HasTypedArrayInWeakList(*iab, *ita1));
   }
-  isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags);
+  isolate->heap()->CollectAllGarbage(Heap::kAbortIncrementalMarkingMask);

   CHECK_EQ(0, CountTypedArrays(*iab));
 }
@@ -298,7 +297,7 @@

     i::OS::SNPrintF(source, "ta%d = null;", i);
     CompileRun(source.start());
-    isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags);
+    isolate->heap()->CollectAllGarbage(Heap::kAbortIncrementalMarkingMask);

     CHECK_EQ(1, CountArrayBuffersInWeakList(isolate->heap()));

@@ -318,7 +317,7 @@
     }

     CompileRun("ta1 = null; ta2 = null; ta3 = null;");
-    isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags);
+    isolate->heap()->CollectAllGarbage(Heap::kAbortIncrementalMarkingMask);

     CHECK_EQ(1, CountArrayBuffersInWeakList(isolate->heap()));

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to