Index: tools/testing/dart/test_suite.dart |
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart |
index ca8b8c84d3d5564d5b45cb37f89d9b07cbf8ca3b..8bc8e9a165c7f2452c6ad53b145c786f3c2398ee 100644 |
--- a/tools/testing/dart/test_suite.dart |
+++ b/tools/testing/dart/test_suite.dart |
@@ -1763,11 +1763,11 @@ class StandardTestSuite extends TestSuite { |
} |
List<List<String>> getVmOptions(Map optionsFromFile) { |
- var COMPILERS = const ['none', 'precompiler', 'dart2app']; |
+ var COMPILERS = const ['none', 'precompiler', 'dart2app', 'dart2appjit']; |
var RUNTIMES = const [ |
'none', |
'dart_precompiled', |
- 'dart_product', |
+ 'dart_app', |
'vm', |
'drt', |
'dartium', |
@@ -2183,7 +2183,9 @@ class TestUtils { |
} |
static deleteTempSnapshotDirectory(Map configuration) { |
- if (configuration['compiler'] == 'dart2app') { |
+ if (configuration['compiler'] == 'dart2app' || |
+ configuration['compiler'] == 'dart2appjit' || |
+ configuration['compiler'] == 'precompiler') { |
var checked = configuration['checked'] ? '-checked' : ''; |
var minified = configuration['minified'] ? '-minified' : ''; |
var csp = configuration['csp'] ? '-csp' : ''; |