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

Unified Diff: runtime/vm/snapshot_test.cc

Issue 1944213002: Support for taking full snapshots from 'dart', not just 'dart_bootstrap'. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot_test.cc
diff --git a/runtime/vm/snapshot_test.cc b/runtime/vm/snapshot_test.cc
index 6a028b863581ecb42c3235ede4c093127bfb62b6..52db51257cca557e224b209dce150080b8a2ab97 100644
--- a/runtime/vm/snapshot_test.cc
+++ b/runtime/vm/snapshot_test.cc
@@ -835,8 +835,7 @@ class TestSnapshotWriter : public SnapshotWriter {
kInitialSize,
&forward_list_,
NULL, /* test_writer */
- true, /* can_send_any_object */
- true /* vm_isolate_is_symbolic */),
+ true /* can_send_any_object */),
forward_list_(thread(), kMaxPredefinedObjectIds) {
ASSERT(buffer != NULL);
ASSERT(alloc != NULL);
@@ -1196,8 +1195,7 @@ UNIT_TEST_CASE(FullSnapshot) {
NULL,
&isolate_snapshot_buffer,
&malloc_allocator,
- NULL, /* instructions_writer */
- true);
+ NULL /* instructions_writer */);
writer.WriteFullSnapshot();
}
}
@@ -1257,8 +1255,7 @@ UNIT_TEST_CASE(FullSnapshot1) {
NULL,
&isolate_snapshot_buffer,
&malloc_allocator,
- NULL, /* instructions_writer */
- true /* vm_isolate_is_symbolic */);
+ NULL /* instructions_writer */);
writer.WriteFullSnapshot();
}
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698