Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: pkg/third_party/html5lib/test/run_all.dart

Issue 22375011: move html5lib code into dart svn repo (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: change location of html5lib to pkg/third_party/html5lib Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/third_party/html5lib/test/run_all.dart
diff --git a/pkg/source_maps/test/run.dart b/pkg/third_party/html5lib/test/run_all.dart
old mode 100755
new mode 100644
similarity index 53%
copy from pkg/source_maps/test/run.dart
copy to pkg/third_party/html5lib/test/run_all.dart
index 876cff774eacb2472d27a0789f996777bb7975ab..dcff52417a62b7a26b3b76577aff132cf5022178
--- a/pkg/source_maps/test/run.dart
+++ b/pkg/third_party/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);
}

Powered by Google App Engine
This is Rietveld 408576698