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

Unified Diff: pkg/csslib/test/run_all.dart

Issue 64373003: pkg/csslib: types, fixes, cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: more Created 7 years, 1 month 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
« no previous file with comments | « pkg/csslib/test/error_test.dart ('k') | pkg/csslib/test/selector_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/csslib/test/run_all.dart
diff --git a/pkg/csslib/test/run_all.dart b/pkg/csslib/test/run_all.dart
index f57ff3eeeca6a62bbeaad818e84e2a04abf59d19..36020cd36c2692d2c59d4f7b54e87cdf3566b8b3 100644
--- a/pkg/csslib/test/run_all.dart
+++ b/pkg/csslib/test/run_all.dart
@@ -8,27 +8,28 @@
*/
library run_impl;
-import 'dart:io';
import 'package:unittest/compact_vm_config.dart';
import 'testing.dart';
+import 'big_1_test.dart' as big_1_test;
import 'compiler_test.dart' as compiler_test;
import 'declaration_test.dart' as declaration_test;
-import 'var_test.dart' as var_test;
-import 'nested_test.dart' as nested_test;
+import 'debug_test.dart' as debug_test;
import 'error_test.dart' as error_test;
+import 'extend_test.dart' as extend_test;
+import 'mixin_test.dart' as mixin_test;
+import 'nested_test.dart' as nested_test;
import 'selector_test.dart' as selector_test;
+import 'var_test.dart' as var_test;
import 'visitor_test.dart' as visitor_test;
-import 'mixin_test.dart' as mixin_test;
-import 'extend_test.dart' as extend_test;
-import 'big_1_test.dart' as big_1_test;
-main(List<String> arguments) {
+void main(List<String> arguments) {
var pattern = new RegExp(arguments.length > 0 ? arguments[0] : '.');
useCompactVMConfiguration();
useMockMessages();
+ if (pattern.hasMatch('debug_test.dart')) debug_test.main();
if (pattern.hasMatch('compiler_test.dart')) compiler_test.main();
if (pattern.hasMatch('declaration_test.dart')) declaration_test.main();
if (pattern.hasMatch('var_test.dart')) var_test.main();
« no previous file with comments | « pkg/csslib/test/error_test.dart ('k') | pkg/csslib/test/selector_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698