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

Unified Diff: runtime/bin/vmservice/observatory/test/test_helper.dart

Issue 464873004: Attempt to fix build bot by including Dart VM flags when invoking testee. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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: runtime/bin/vmservice/observatory/test/test_helper.dart
===================================================================
--- runtime/bin/vmservice/observatory/test/test_helper.dart (revision 39151)
+++ runtime/bin/vmservice/observatory/test/test_helper.dart (working copy)
@@ -23,8 +23,11 @@
Future<int> launch() {
String dartExecutable = Platform.executable;
- print('** Launching $args');
- return Process.start(dartExecutable, args).then((p) {
+ var fullArgs = [];
+ fullArgs.addAll(Platform.executableArguments);
+ fullArgs.addAll(args);
+ print('** Launching $fullArgs');
+ return Process.start(dartExecutable, fullArgs).then((p) {
Completer completer = new Completer();
process = p;
« 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