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

Side by Side Diff: pkg/dev_compiler/test/all_tests.dart

Issue 2598593003: support --options flag and other analysis options flags in DDC (Closed)
Patch Set: merge Created 3 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /// Meta-test that runs all tests we have written. 5 /// Meta-test that runs all tests we have written.
6 library dev_compiler.test.all_tests; 6 library dev_compiler.test.all_tests;
7 7
8 import 'package:test/test.dart'; 8 import 'package:test/test.dart';
9 9
10 import 'closure/closure_annotation_test.dart' as closure_annotation_test; 10 import 'closure/closure_annotation_test.dart' as closure_annotation_test;
11 import 'closure/closure_type_test.dart' as closure_type_test; 11 import 'closure/closure_type_test.dart' as closure_type_test;
12 import 'codegen_test.dart' as codegen_test; 12 import 'codegen_test.dart' as codegen_test;
13 import 'js/builder_test.dart' as builder_test; 13 import 'js/builder_test.dart' as builder_test;
14 import 'options/options_test.dart' as options_test;
14 import 'worker/worker_test.dart' as worker_test; 15 import 'worker/worker_test.dart' as worker_test;
15 16
16 void main() { 17 void main() {
18 group('options', options_test.main);
17 group('codegen', () => codegen_test.main([])); 19 group('codegen', () => codegen_test.main([]));
18 group('closure', () { 20 group('closure', () {
19 closure_annotation_test.main(); 21 closure_annotation_test.main();
20 closure_type_test.main(); 22 closure_type_test.main();
21 }); 23 });
22 group('js', builder_test.main); 24 group('js', builder_test.main);
23 group('worker', worker_test.main); 25 group('worker', worker_test.main);
24 } 26 }
OLDNEW
« no previous file with comments | « pkg/dev_compiler/lib/src/compiler/compiler.dart ('k') | pkg/dev_compiler/test/codegen_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698