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

Unified Diff: test/all_tests.dart

Issue 1014573003: Adding Travis CI and Coveralls support (Closed) Base URL: https://github.com/dart-lang/dart-dev-compiler.git@master
Patch Set: Created 5 years, 9 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: test/all_tests.dart
diff --git a/test/all_tests.dart b/test/all_tests.dart
index 29822196236e9c52062bdc3aa60a12409634dbdd..a03e512e765e137d71234dd77d4b8dc443b24db2 100644
--- a/test/all_tests.dart
+++ b/test/all_tests.dart
@@ -5,7 +5,6 @@
/// Meta-test that runs all tests we have written.
library dev_compiler.test.all_tests;
-import 'package:unittest/compact_vm_config.dart';
import 'package:unittest/unittest.dart';
import 'checker/checker_test.dart' as checker_test;
@@ -16,9 +15,11 @@ 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();
+import 'test_util.dart';
+
+void main(args) {
+ configureTest();
+
group('end-to-end', e2e.main);
group('inferred types', inferred_type_test.main);
group('checker', checker_test.main);

Powered by Google App Engine
This is Rietveld 408576698