Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(457)

Unified Diff: runtime/observatory/tests/service/dominator_tree_test.dart

Issue 1811713002: Perform a full GC by default when requesting a heap snapshot. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/tests/service/dominator_tree_test.dart
diff --git a/runtime/observatory/tests/service/dominator_tree_test.dart b/runtime/observatory/tests/service/dominator_tree_test.dart
index a778f62343d968a15008e366056a0af25df71938..5c279c91263a790d024ee87d7e15766786a3eaac 100644
--- a/runtime/observatory/tests/service/dominator_tree_test.dart
+++ b/runtime/observatory/tests/service/dominator_tree_test.dart
@@ -57,7 +57,7 @@ buildGraph() {
var tests = [
(Isolate isolate) async {
var rootLib = await isolate.rootLibrary.load();
- var snapshot = await isolate.fetchHeapSnapshot().last;
+ var snapshot = await isolate.fetchHeapSnapshot(false).last;
node(String className) {
var cls = rootLib.classes.singleWhere((cls) => cls.name == className);

Powered by Google App Engine
This is Rietveld 408576698