| Index: third_party/pkg/html5lib/test/run_all.dart
|
| diff --git a/pkg/source_maps/test/run.dart b/third_party/pkg/html5lib/test/run_all.dart
|
| old mode 100755
|
| new mode 100644
|
| similarity index 53%
|
| copy from pkg/source_maps/test/run.dart
|
| copy to third_party/pkg/html5lib/test/run_all.dart
|
| index 876cff774eacb2472d27a0789f996777bb7975ab..dcff52417a62b7a26b3b76577aff132cf5022178
|
| --- a/pkg/source_maps/test/run.dart
|
| +++ b/third_party/pkg/html5lib/test/run_all.dart
|
| @@ -3,20 +3,17 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -library test.run;
|
| +library test.run_all;
|
|
|
| +import 'dart:io' show Options;
|
| import 'package:unittest/compact_vm_config.dart';
|
| import 'package:unittest/unittest.dart';
|
| -import 'dart:io' show Options;
|
|
|
| -import 'builder_test.dart' as builder_test;
|
| -import 'end2end_test.dart' as end2end_test;
|
| +import 'dom_test.dart' as dom_test;
|
| +import 'parser_feature_test.dart' as parser_feature_test;
|
| import 'parser_test.dart' as parser_test;
|
| -import 'printer_test.dart' as printer_test;
|
| -import 'refactor_test.dart' as refactor_test;
|
| -import 'span_test.dart' as span_test;
|
| -import 'utils_test.dart' as utils_test;
|
| -import 'vlq_test.dart' as vlq_test;
|
| +import 'tokenizer_test.dart' as tokenizer_test;
|
| +import 'dom_compat_test.dart' as dom_compat_test;
|
|
|
| main() {
|
| var args = new Options().arguments;
|
| @@ -29,12 +26,9 @@ main() {
|
| }
|
| }
|
|
|
| - addGroup('builder_test.dart', builder_test.main);
|
| - addGroup('end2end_test.dart', end2end_test.main);
|
| + addGroup('dom_test.dart', dom_test.main);
|
| + addGroup('dom_compat_test.dart', dom_compat_test.main);
|
| + addGroup('parser_feature_test.dart', parser_feature_test.main);
|
| addGroup('parser_test.dart', parser_test.main);
|
| - addGroup('printer_test.dart', printer_test.main);
|
| - addGroup('refactor_test.dart', refactor_test.main);
|
| - addGroup('span_test.dart', span_test.main);
|
| - addGroup('utils_test.dart', utils_test.main);
|
| - addGroup('vlq_test.dart', vlq_test.main);
|
| + addGroup('tokenizer_test.dart', tokenizer_test.main);
|
| }
|
|
|