| Index: runtime/vm/snapshot_test.cc
|
| diff --git a/runtime/vm/snapshot_test.cc b/runtime/vm/snapshot_test.cc
|
| index ef7a10cfcc4ba283caffac486b9d9600604f0408..9e307dd8291d9082a1080bf47fc1c51525e4239c 100644
|
| --- a/runtime/vm/snapshot_test.cc
|
| +++ b/runtime/vm/snapshot_test.cc
|
| @@ -836,7 +836,7 @@ class TestSnapshotWriter : public SnapshotWriter {
|
| &forward_list_,
|
| NULL, /* test_writer */
|
| true, /* can_send_any_object */
|
| - true /* vm_isolate_is_symbolic */),
|
| + false /* writing_vm_isolate */),
|
| forward_list_(thread(), kMaxPredefinedObjectIds) {
|
| ASSERT(buffer != NULL);
|
| ASSERT(alloc != NULL);
|
| @@ -1187,8 +1187,7 @@ UNIT_TEST_CASE(FullSnapshot) {
|
| NULL,
|
| &isolate_snapshot_buffer,
|
| &malloc_allocator,
|
| - NULL, /* instructions_writer */
|
| - true);
|
| + NULL /* instructions_writer */);
|
| writer.WriteFullSnapshot();
|
| }
|
| }
|
| @@ -1248,8 +1247,7 @@ UNIT_TEST_CASE(FullSnapshot1) {
|
| NULL,
|
| &isolate_snapshot_buffer,
|
| &malloc_allocator,
|
| - NULL, /* instructions_writer */
|
| - true /* vm_isolate_is_symbolic */);
|
| + NULL /* instructions_writer */);
|
| writer.WriteFullSnapshot();
|
| }
|
|
|
|
|