| Index: tests/compiler/dart2js/serialization/model_test.dart
|
| diff --git a/tests/compiler/dart2js/serialization/model_test.dart b/tests/compiler/dart2js/serialization/model_test.dart
|
| index 5dab06eed9c6550f81532aaae30ee426839f29c0..a73f3d170b3a84cfcbed7f9a6bd574fee549005b 100644
|
| --- a/tests/compiler/dart2js/serialization/model_test.dart
|
| +++ b/tests/compiler/dart2js/serialization/model_test.dart
|
| @@ -32,7 +32,7 @@ main(List<String> args) {
|
| resolutionInputs: serializedData.toUris());
|
| } else {
|
| Uri entryPoint = Uri.parse('memory:main.dart');
|
| - arguments.forEachTest(serializedData, TESTS, checkModels);
|
| + await arguments.forEachTest(serializedData, TESTS, checkModels);
|
| }
|
| });
|
| }
|
| @@ -44,11 +44,6 @@ Future checkModels(
|
| int index,
|
| Test test,
|
| bool verbose: false}) async {
|
| - if (test != null && test.name == 'Disable tree shaking through reflection') {
|
| - // TODO(johnniwinther): Support serialization of metadata.
|
| - return;
|
| - }
|
| -
|
| String testDescription = test != null ? test.name : '${entryPoint}';
|
| String id = index != null ? '$index: ' : '';
|
| print('------------------------------------------------------------------');
|
|
|