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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 9700018: Revert "Wrap multioption args into quotes." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 208351a1ac462f40ea82a3b99db4a78429d99ea0..c3ea82f31e2e8b6ce7df48fdafa8e4e4a543e452 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -567,8 +567,7 @@ class StandardTestSuite implements TestSuite {
dartFlags.add("--enable_type_checks");
}
dartFlags.addAll(vmOptions);
- final joined = Strings.join(dartFlags, ' ');
- args.add('--dart-flags="$joined"');
+ args.add('--dart-flags=${Strings.join(dartFlags, " ")}');
}
args.add(htmlPath);
}
« 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