From 6051488ad95b658f775482573c514b205b890003 Mon Sep 17 00:00:00 2001 From: Ryan Macnak Date: Mon, 12 Dec 2016 13:42:35 -0800 Subject: [PATCH] Cleanup dead compiler and runtime aliases from the test framework. R=fschneider@google.com Review-Url: https://codereview.chromium.org/2570633002 . --- tools/testing/dart/test_options.dart | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tools/testing/dart/test_options.dart b/tools/testing/dart/test_options.dart index f84a5601688..e08f1152d8b 100644 --- a/tools/testing/dart/test_options.dart +++ b/tools/testing/dart/test_options.dart @@ -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 _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';