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

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

Issue 9150006: test.dart: Stop looping over vmOptions in browser tests to turn the buildbot green. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 f865d0c8bb714848169d3a82ea400d4633c5399b..c545b63713bf04b8276214822a41f0b4dbe1aaa6 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -362,7 +362,10 @@ class StandardTestSuite implements TestSuite {
}
}
- for (var vmOptions in optionsFromFile['vmOptions']) {
+ // TODO(whesse): Find out if this loop is turning the buildbot red.
+ // for (var vmOptions in optionsFromFile['vmOptions']) {
+ var vmOptions = optionsFromFile['vmOptions'][0]; {
Emily Fortuna 2012/01/09 19:08:36 I think what may be happening is if you specify --
Emily Fortuna 2012/01/09 19:10:16 Fixing url from above: http://code.google.com/p/da
+
// Create a unique temporary directory for each set of vmOptions.
// TODO(whesse): Replace separate replaces with a RegExp when
// replaceAll(RegExp, String) is implemented.
« 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