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

Unified Diff: tools/test.dart

Issue 1922163002: Initial support to test.dart for running precompiler tests on android devices (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Some fixes Created 4 years, 8 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
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index bbfdf258cfedc62378168386c7bea12fdf7aa3cd..48a7d082e0b46a1179d56afd196131ee902807ea 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -57,11 +57,11 @@ Future _deleteTemporaryDartDirectories() {
void main(List<String> arguments) {
// This script is in [dart]/tools.
TestUtils.setDartDirUri(Platform.script.resolve('..'));
- _deleteTemporaryDartDirectories().then((_) {
+ _deleteTemporaryDartDirectories().then((_) async {
var optionsParser = new TestOptionsParser();
var configurations = optionsParser.parse(arguments);
if (configurations != null && configurations.length > 0) {
- testConfigurations(configurations);
+ await testConfigurations(configurations);
Bill Hesse 2016/04/27 12:22:31 What does this even do? We aren't doing anything
kustermann 2016/04/27 13:25:08 It runs all the tests. So it makes sense that it r
}
});
}

Powered by Google App Engine
This is Rietveld 408576698