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

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

Issue 11275025: Clean up test.dart framework. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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
« tools/testing/dart/test_runner.dart ('K') | « tools/testing/dart/test_runner.dart ('k') | 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
===================================================================
--- tools/testing/dart/test_suite.dart (revision 14052)
+++ tools/testing/dart/test_suite.dart (working copy)
@@ -155,7 +155,8 @@
[new Command(runnerPath, args)],
configuration,
completeHandler,
- expectations));
+ expectations,
+ usesWebDriver: false));
}
}
@@ -457,7 +458,9 @@
completeHandler,
expectations,
isNegative: isNegative,
- info: info));
+ info: info,
+ usesWebDriver:
+ TestUtils.usesWebDriver(configuration['runtime'])));
}
}
@@ -736,7 +739,8 @@
// Create BrowserTestCase and queue it.
var testCase = new BrowserTestCase('$suiteName/$testName',
commands, configuration, completeHandler, expectations,
- info, info.hasCompileError || info.hasRuntimeError);
+ info, info.hasCompileError || info.hasRuntimeError,
+ useWebDriver: TestUtils.usesWebDriver(runtime));
doTest(testCase);
}
}
@@ -1208,7 +1212,8 @@
[new Command('java', args)],
updatedConfiguration,
completeHandler,
- new Set<String>.from([PASS])));
+ new Set<String>.from([PASS]),
+ usesWebDriver: TestUtils.usesWebDriver(runtime)));
doDone();
}
« tools/testing/dart/test_runner.dart ('K') | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698