| Index: runtime/vm/snapshot_test.cc
|
| ===================================================================
|
| --- runtime/vm/snapshot_test.cc (revision 20286)
|
| +++ runtime/vm/snapshot_test.cc (working copy)
|
| @@ -1130,7 +1130,7 @@
|
|
|
| // Load the test library from the snapshot.
|
| EXPECT(script_snapshot != NULL);
|
| - result = Dart_LoadScriptFromSnapshot(script_snapshot);
|
| + result = Dart_LoadScriptFromSnapshot(script_snapshot, size);
|
| EXPECT_VALID(result);
|
|
|
| // Get list of library URLs loaded and compare with expected count.
|
| @@ -1204,7 +1204,7 @@
|
|
|
| // Load the test library from the snapshot.
|
| EXPECT(script_snapshot != NULL);
|
| - result = Dart_LoadScriptFromSnapshot(script_snapshot);
|
| + result = Dart_LoadScriptFromSnapshot(script_snapshot, size);
|
| EXPECT_VALID(result);
|
| }
|
| Dart_ShutdownIsolate();
|
|
|