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

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

Issue 10828077: Rerun each CL 10 times to smooth out noise in perf testing. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 5 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/testing/dart/drt_updater.dart
===================================================================
--- tools/testing/dart/drt_updater.dart (revision 10085)
+++ tools/testing/dart/drt_updater.dart (working copy)
@@ -58,14 +58,14 @@
// Download the default DumpRenderTree from Google Storage.
if (_dumpRenderTreeUpdater === null) {
_dumpRenderTreeUpdater = new _DartiumUpdater('DumpRenderTree',
- 'get_drt.py');
+ 'get_archive.py', 'drt');
}
return _dumpRenderTreeUpdater;
} else if (runtime == 'dartium' && configuration['dartium'] == '') {
// Download the default Dartium from Google Storage.
if (_dartiumUpdater === null) {
- _dartiumUpdater = new _DartiumUpdater('Dartium Chrome', 'get_drt.py',
- '--dartium');
+ _dartiumUpdater = new _DartiumUpdater('Dartium Chrome', 'get_archive.py',
+ 'dartium');
}
return _dartiumUpdater;
} else {

Powered by Google App Engine
This is Rietveld 408576698