89532d54ed
Change-Id: I6ca4b0cef189248eac4d0898e8549424f2d889bb Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/380180 Commit-Queue: Devon Carew <devoncarew@google.com> Reviewed-by: Nate Bosch <nbosch@google.com>
39 lines
1.5 KiB
Dart
39 lines
1.5 KiB
Dart
// Copyright (c) 2012, 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.
|
|
|
|
/// Access to the runner configuration this test is running in.
|
|
///
|
|
/// Provides queries against and properties of the current configuration
|
|
/// that a test is being compiled and executed in.
|
|
///
|
|
/// This library is separate from `expect.dart` because it uses
|
|
/// `fromEnvironment` constants that cannot be precompiled,
|
|
/// and we precompile `expect.dart`.
|
|
library expect_config;
|
|
|
|
import 'package:smith/smith.dart';
|
|
|
|
final Configuration _configuration = Configuration.parse(
|
|
const String.fromEnvironment("test_runner.configuration"),
|
|
<String, dynamic>{});
|
|
String configAsString = _configuration.toString();
|
|
|
|
bool get isDart2jsConfiguration => _configuration.compiler == Compiler.dart2js;
|
|
|
|
bool get isDart2WasmConfiguration =>
|
|
_configuration.compiler == Compiler.dart2wasm;
|
|
|
|
bool get isDdcConfiguration => _configuration.compiler == Compiler.ddc;
|
|
|
|
bool get isVmJitConfiguration => _configuration.compiler == Compiler.dartk;
|
|
|
|
bool get isVmAotConfiguration => _configuration.compiler == Compiler.dartkp;
|
|
|
|
bool get isVmConfiguration => isVmJitConfiguration || isVmAotConfiguration;
|
|
|
|
bool get isBrowserConfiguration => _configuration.runtime.isBrowser;
|
|
|
|
bool get isWebConfiguration =>
|
|
isDart2jsConfiguration || isDart2WasmConfiguration || isDdcConfiguration;
|