| Index: tests/compiler/dart2js/serialization/compilation_test.dart
|
| diff --git a/tests/compiler/dart2js/serialization/compilation_test.dart b/tests/compiler/dart2js/serialization/compilation_test.dart
|
| index 82d324752e715e61574b41ea512a8261701f6365..65543d53f9ff17a8e14bd4faeaf42a81b4104c5e 100644
|
| --- a/tests/compiler/dart2js/serialization/compilation_test.dart
|
| +++ b/tests/compiler/dart2js/serialization/compilation_test.dart
|
| @@ -26,9 +26,8 @@ main(List<String> args) {
|
| await compile(serializedData, entryPoint, null);
|
| } else {
|
| Uri entryPoint = Uri.parse('memory:main.dart');
|
| - // TODO(johnniwinther): Handle the remaining tests.
|
| int start = arguments.index ?? 0;
|
| - int end = arguments.index ?? 16/*TESTS.length - 1*/;
|
| + int end = arguments.index ?? TESTS.length - 1;
|
| for (int index = start; index <= end; index++) {
|
| Test test = TESTS[index];
|
| await compile(serializedData, entryPoint, test,
|
|
|