Files
sdk/pkg/dev_compiler/test/all_tests.dart
T
Dan Rubel 55ef6e193c support --options flag and other analysis options flags in DDC
This updates DDC options processing to support:
* --options /path/to/analysis/options/file.yaml
* --enable-strict-call-checks
* --supermixin
* --no-implicit-casts
* --no-implicit-dynamic

As well as general refactoring and cleanup of DDC options processing

R=vsm@google.com

Review-Url: https://codereview.chromium.org/2598593003 .
2017-01-04 18:15:21 -05:00

27 lines
940 B
Dart

// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// 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.
/// Meta-test that runs all tests we have written.
library dev_compiler.test.all_tests;
import 'package:test/test.dart';
import 'closure/closure_annotation_test.dart' as closure_annotation_test;
import 'closure/closure_type_test.dart' as closure_type_test;
import 'codegen_test.dart' as codegen_test;
import 'js/builder_test.dart' as builder_test;
import 'options/options_test.dart' as options_test;
import 'worker/worker_test.dart' as worker_test;
void main() {
group('options', options_test.main);
group('codegen', () => codegen_test.main([]));
group('closure', () {
closure_annotation_test.main();
closure_type_test.main();
});
group('js', builder_test.main);
group('worker', worker_test.main);
}