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

Unified Diff: scripts/master/factory/chromium_factory.py

Issue 12087097: Enable automatic graph data generation for the chromium.endure waterfall. (Closed) Base URL: http://git.chromium.org/chromium/tools/build.git@master
Patch Set: updated Created 7 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 | « scripts/master/factory/chromium_commands.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/master/factory/chromium_factory.py
diff --git a/scripts/master/factory/chromium_factory.py b/scripts/master/factory/chromium_factory.py
index f9b2041a0ef8ed69fcdc93c3dafe302a84f29e01..558cd435309ad575234126afa66042c0ef9f6dc0 100644
--- a/scripts/master/factory/chromium_factory.py
+++ b/scripts/master/factory/chromium_factory.py
@@ -785,25 +785,25 @@ class ChromiumFactory(gclient_factory.GClientFactory):
}
# Live sites.
if R('endure_control_tests'):
- f.AddChromeEndureTest('endure_control', endure_tests['control'], fp)
+ f.AddChromeEndureTest('control', endure_tests['control'], fp)
if R('endure_docs_tests'):
- f.AddChromeEndureTest('endure_docs', endure_tests['docs'], fp)
+ f.AddChromeEndureTest('docs', endure_tests['docs'], fp)
if R('endure_gmail_tests'):
- f.AddChromeEndureTest('endure_gmail', endure_tests['gmail'], fp)
+ f.AddChromeEndureTest('gmail', endure_tests['gmail'], fp)
if R('endure_indexeddb_tests'):
- f.AddChromeEndureTest('endure_indexeddb', endure_tests['indexeddb'],
+ f.AddChromeEndureTest('indexeddb', endure_tests['indexeddb'],
fp)
if R('endure_plus_tests'):
- f.AddChromeEndureTest('endure_plus', endure_tests['plus'], fp)
+ f.AddChromeEndureTest('plus', endure_tests['plus'], fp)
# Web Page Replay.
if R('endure_docs_wpr_tests'):
- f.AddChromeEndureTest('endure_docs_wpr', endure_tests['docs'], fp,
+ f.AddChromeEndureTest('docs_wpr', endure_tests['docs'], fp,
wpr=True)
if R('endure_gmail_wpr_tests'):
- f.AddChromeEndureTest('endure_gmail_wpr', endure_tests['gmail'], fp,
+ f.AddChromeEndureTest('gmail_wpr', endure_tests['gmail'], fp,
wpr=True)
if R('endure_plus_wpr_tests'):
- f.AddChromeEndureTest('endure_plus_wpr', endure_tests['plus'], fp,
+ f.AddChromeEndureTest('plus_wpr', endure_tests['plus'], fp,
wpr=True)
# HTML5 media tag performance/functional test using PyAuto.
« no previous file with comments | « scripts/master/factory/chromium_commands.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698