1
0
mirror of https://github.com/dart-lang/sdk synced 2024-07-08 12:06:26 +00:00

Cleanup dead compiler and runtime aliases from the test framework.

R=fschneider@google.com

Review-Url: https://codereview.chromium.org/2570633002 .
This commit is contained in:
Ryan Macnak 2016-12-12 13:42:35 -08:00
parent a5b2e62bda
commit 6051488ad9

View File

@ -89,8 +89,6 @@ class TestOptionsParser {
'dart2js',
'dart2analyzer',
'app_jit',
'dart2app', // TODO(rmacnak): Remove after updating bots.
'dart2appjit', // TODO(rmacnak): Remove after updating bots.
'dartk',
'dartkp'
],
@ -127,7 +125,6 @@ class TestOptionsParser {
[
'vm',
'dart_precompiled',
'dart_app', // TODO(rmacnak): Remove after updating bots.
'd8',
'jsshell',
'drt',
@ -744,15 +741,6 @@ Note: currently only implemented for dart2js.''',
* into a list of configurations with exactly one value per key.
*/
List<Map> _expandConfigurations(Map configuration) {
// TODO(rmacnak): Remove after updating bots.
if (configuration['runtime'] == 'dart_app') {
configuration['runtime'] = 'vm';
}
if (configuration['compiler'] == 'dart2app' ||
configuration['compiler'] == 'dart2appjit') {
configuration['compiler'] = 'app_jit';
}
// Expand the pseudo-values such as 'all'.
if (configuration['arch'] == 'all') {
configuration['arch'] = 'ia32,x64,simarm,simarm64,simmips,simdbc64';