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

Unified Diff: test/all_tests.dart

Issue 973433003: Initial cut for a development server (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « pubspec.yaml ('k') | test/checker/self_host_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/all_tests.dart
diff --git a/test/all_tests.dart b/test/all_tests.dart
index 1b41c0d616914486f9f059ac38372a1a58dee817..65852d99f3e67e9b6548cda43ff33b677bf0bc2a 100644
--- a/test/all_tests.dart
+++ b/test/all_tests.dart
@@ -14,14 +14,17 @@ import 'codegen_test.dart' as codegen_test;
import 'end_to_end_test.dart' as e2e;
import 'report_test.dart' as report_test;
import 'runtime/dart_runtime_test.dart' as runtime_test;
+import 'dependency_graph_test.dart' as dependency_graph_test;
main(args) {
+ groupSep = " > ";
useCompactVMConfiguration();
group('end-to-end', e2e.main);
group('inferred types', inferred_type_test.main);
group('checker', checker_test.main);
group('report', report_test.main);
group('runtime', runtime_test.main);
+ group('dependency_graph', dependency_graph_test.main);
group('codegen', () => codegen_test.main(args));
var args2 = new List.from((args == null) ? [] : args, growable: true);
args2.add("--dart-gen");
« no previous file with comments | « pubspec.yaml ('k') | test/checker/self_host_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698