blob: 6a0d25667451ad5b464c1570def45d172639c279 [file] [log] [blame]
// Copyright (c) 2017, 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.
import 'dart:io';
import 'package:async_helper/async_helper.dart';
import '../equivalence/id_equivalence_helper.dart';
import 'inference_test_helper.dart';
/// Tests covering behavior only implemented in the new
/// kernel-based pipeline.
const List<String> skipforAst = const <String>[
'logical_better.dart',
];
/// Tests that are not yet working in the kernel pipeline.
const List<String> skipforKernel = const <String>[
'super_get.dart',
'super_set.dart',
];
main(List<String> args) {
asyncTest(() async {
Directory dataDir = new Directory.fromUri(Platform.script.resolve('data'));
await checkTests(
dataDir, computeMemberAstTypeMasks, computeMemberIrTypeMasks,
args: args,
skipforAst: skipforAst,
skipForKernel: skipforKernel,
options: [stopAfterTypeInference]);
});
}