mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:10:22 +00:00
5c2ca380a4
Change-Id: Ie9c7548dc81b58db0c1149124db79e4cf1430cc1 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/239723 Reviewed-by: Nate Biggs <natebiggs@google.com> Reviewed-by: Joshua Litt <joshualitt@google.com> Commit-Queue: Stephen Adams <sra@google.com>
35 lines
1.5 KiB
Dart
35 lines
1.5 KiB
Dart
// Copyright (c) 2020, 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.
|
|
|
|
// @dart = 2.10
|
|
|
|
import 'package:_fe_analyzer_shared/src/testing/id_testing.dart' as id;
|
|
|
|
const List<String> idTests = <String>[
|
|
'pkg/compiler/test/model/cfe_constant_test.dart',
|
|
'pkg/compiler/test/annotations/annotations_test.dart',
|
|
'pkg/compiler/test/closure/closure_test.dart',
|
|
'pkg/compiler/test/codegen/model_test.dart',
|
|
'pkg/compiler/test/deferred_loading/deferred_loading_test.dart',
|
|
'pkg/compiler/test/field_analysis/jfield_analysis_test.dart',
|
|
'pkg/compiler/test/field_analysis/kfield_analysis_test.dart',
|
|
'pkg/compiler/test/impact/impact_test.dart',
|
|
'pkg/compiler/test/inference/callers_test.dart',
|
|
'pkg/compiler/test/inference/inference_test_helper.dart',
|
|
'pkg/compiler/test/inference/inference_data_test.dart',
|
|
'pkg/compiler/test/inference/side_effects_test.dart',
|
|
'pkg/compiler/test/inlining/inlining_test.dart',
|
|
'pkg/compiler/test/jumps/jump_test.dart',
|
|
'pkg/compiler/test/member_usage/member_usage_test.dart',
|
|
'pkg/compiler/test/optimization/optimization_test.dart',
|
|
'pkg/compiler/test/rti/rti_need_test_helper.dart',
|
|
'pkg/compiler/test/rti/rti_emission_test_helper.dart',
|
|
'pkg/compiler/test/static_type/static_type_test.dart',
|
|
'pkg/compiler/test/static_type/type_promotion_test.dart',
|
|
'pkg/compiler/test/equivalence/id_testing_test.dart',
|
|
];
|
|
|
|
main() async {
|
|
await id.updateAllTests(idTests);
|
|
}
|