0b26f4816b
* Use dartk as the default compiler for runtime=vm. * Status file entries for checking for the `none` compiler now either use dartk or are deleted. Tested: Standard CQ and local testing. Fixes: https://github.com/dart-lang/sdk/issues/50241 Change-Id: I7a08d3e491ae1c82a0348fb66ea7b557398f97e5 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/264682 Reviewed-by: Siva Annamalai <asiva@google.com> Reviewed-by: Lasse Nielsen <lrn@google.com> Commit-Queue: Alexander Thomas <athom@google.com>
43 lines
1.4 KiB
Dart
43 lines
1.4 KiB
Dart
// Copyright (c) 2013, 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.
|
|
|
|
/// Simple command line interface to launching browsers.
|
|
/// Uses the browser_controller framework.
|
|
/// The usage is:
|
|
/// DARTBIN launch_browser.dart BROWSER_NAME URL
|
|
/// DARTBIN should be the checked in stable binary.
|
|
|
|
import 'package:test_runner/src/browser_controller.dart';
|
|
import 'package:test_runner/src/configuration.dart';
|
|
|
|
void printHelp() {
|
|
print("Usage pattern:");
|
|
print("launch_browser.dart browser url");
|
|
print("Supported browsers: ${Browser.supportedBrowsers}");
|
|
}
|
|
|
|
void main(List<String> arguments) {
|
|
if (arguments.length != 2) {
|
|
print("Wrong number of arguments, please pass in exactly two arguments");
|
|
printHelp();
|
|
return;
|
|
}
|
|
var name = arguments[0];
|
|
|
|
if (!Browser.supportedBrowser(name)) {
|
|
print("Specified browser not supported");
|
|
printHelp();
|
|
return;
|
|
}
|
|
|
|
var runtime = Runtime.find(name);
|
|
var configuration = TestConfiguration(
|
|
configuration: Configuration("dummy-configuration", Architecture.x64,
|
|
Compiler.dartk, Mode.release, runtime, System.host),
|
|
outputDirectory: 'dummy',
|
|
reproducingArguments: []);
|
|
var browser = Browser.fromConfiguration(configuration);
|
|
browser.start(arguments[1]);
|
|
}
|