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

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

Issue 2502283003: Add a version of heap snapshots that use only fields and stack frames as roots and only include ins… (Closed)
Patch Set: . Created 4 years, 1 month 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_vm_test.dart
diff --git a/runtime/observatory/tests/service/dominator_tree_test.dart b/runtime/observatory/tests/service/dominator_tree_vm_test.dart
similarity index 94%
rename from runtime/observatory/tests/service/dominator_tree_test.dart
rename to runtime/observatory/tests/service/dominator_tree_vm_test.dart
index 037fbebcbf6a0811d22caeae53eb976f8d619819..ceee90a1e0d74e1595084fe76002fec9c627f1d0 100644
--- a/runtime/observatory/tests/service/dominator_tree_test.dart
+++ b/runtime/observatory/tests/service/dominator_tree_vm_test.dart
@@ -4,6 +4,7 @@
// VMOptions=--error_on_bad_type --error_on_bad_override
import 'package:observatory/heap_snapshot.dart';
+import 'package:observatory/models.dart' as M;
import 'package:observatory/service_io.dart';
import 'package:unittest/unittest.dart';
import 'test_helper.dart';
@@ -58,7 +59,8 @@ buildGraph() {
var tests = [
(Isolate isolate) async {
final rootLib = await isolate.rootLibrary.load();
- final raw = await isolate.fetchHeapSnapshot(false).last;
+ final raw =
+ await isolate.fetchHeapSnapshot(M.HeapSnapshotRoots.vm, false).last;
final snapshot = new HeapSnapshot();
await snapshot.loadProgress(isolate, raw).last;
« no previous file with comments | « runtime/observatory/tests/service/dominator_tree_user_test.dart ('k') | runtime/observatory/tests/service/graph_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698