Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Unified Diff: tools/migration/bin/run_tests.dart

Issue 2997673002: Add cases to all configs and allow for running a single test. (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/migration/bin/run_tests.dart
diff --git a/tools/migration/bin/run_tests.dart b/tools/migration/bin/run_tests.dart
index 5e0bfb03f6658da98493831eacf89e0549df6e86..99b1a45af0c9b1affed3344d320204da05ac56f0 100644
--- a/tools/migration/bin/run_tests.dart
+++ b/tools/migration/bin/run_tests.dart
@@ -25,6 +25,7 @@ const chrome = "--runtime=chrome";
const precompiled = "--runtime=dart_precompiled";
const noRuntime = "--runtime=none";
const vm = "--runtime=vm";
+const d8 = "--runtime=d8";
const jsshell = "--runtime=jsshell";
const checked = "--checked";
@@ -54,8 +55,10 @@ final allConfigs = {
// dart2js-jsshell?
"analyzer": [analyzer, noRuntime, useSdk],
"analyzer-checked": [analyzer, noRuntime, checked, useSdk],
- "analyzer-strong": [analyzer, noRuntime, checked, strong, useSdk],
+ "analyzer-checked-strong": [analyzer, noRuntime, checked, strong, useSdk],
+ "analyzer-strong": [analyzer, noRuntime, strong, useSdk],
"dart2js": [dart2js, chrome, useSdk, dart2jsBatch],
+ "dart2js-d8-checked": [dart2js, d8, checked, fastStartup, useSdk, dart2jsBatch],
"dart2js-jsshell": [dart2js, jsshell, fastStartup, useSdk, dart2jsBatch],
// TODO(rnystrom): Is it worth running dart2js on Firefox too?
"dartdevc": [dartdevc, chrome, useSdk, strong],
@@ -87,7 +90,13 @@ Future<Null> main(List<String> arguments) async {
return;
}
- if (argResults.rest.length != 2) {
+ var remainingArgs = []..addAll(argResults.rest);
+
+ if (remainingArgs.length == 1) {
+ remainingArgs.add(remainingArgs.first);
+ }
+
+ if (remainingArgs.length != 2) {
usage(argParser);
exit(1);
}
@@ -98,8 +107,8 @@ Future<Null> main(List<String> arguments) async {
var tests = scanTests();
- var startIndex = findFork(tests, argResults.rest[0]);
- var endIndex = findFork(tests, argResults.rest[1]);
+ var startIndex = findFork(tests, remainingArgs[0]);
+ var endIndex = findFork(tests, remainingArgs[1]);
if (startIndex == null || endIndex == null) exit(1);
@@ -180,7 +189,7 @@ Future<Null> main(List<String> arguments) async {
void usage(ArgParser parser) {
print("Usage: dart run_tests.dart [--build] [--configs=...] "
- "<first file> <last file>");
+ "<first file> [last file]");
print("\n");
print("Example:");
print("\n");
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698