blob: afa6b6e67bbd65270acda1eaf6f1677cee4b4d0d [file] [log] [blame]
// Copyright (c) 2019, 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.md file.
library fasta.test.weak_suite;
import 'suite_utils.dart' show internalMain;
import 'testing/suite.dart';
Future<FastaContext> createContext(
Chain suite, Map<String, String> environment) {
environment[COMPILATION_MODE] = CompileMode.full.name;
return FastaContext.create(suite, environment);
}
Future<void> main([List<String> arguments = const []]) async {
await internalMain(createContext, arguments: arguments);
}