dart-sdk/pkg/front_end/test/parser_all_suite.dart
Johnni Winther f10a70ebda [cfe] Migrate (more) CFE tests (part 3)
Change-Id: I3079cc05a342743c95a143b5ec9dfc32e4f1c0de
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/220321
Reviewed-by: Jens Johansen <jensj@google.com>
Commit-Queue: Johnni Winther <johnniwinther@google.com>
2021-11-16 10:37:22 +00:00

16 lines
584 B
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.
import 'package:testing/testing.dart' show Chain, ChainContext, runMe;
import 'parser_suite.dart';
void main([List<String> arguments = const []]) =>
runMe(arguments, createContext, configurationPath: "../testing.json");
Future<ChainContext> createContext(
Chain suite, Map<String, String> environment) async {
return new ContextChecksOnly(suite.name);
}