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

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

Issue 23625005: Clean up old endure code and fix name clash. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Created 7 years, 3 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 e0dec9c608ab6fd36c99a84b3b5a8460e911051c..1f80389b0a7024346d9c42a14bb85ba90592d201 100644
--- a/scripts/master/factory/chromium_factory.py
+++ b/scripts/master/factory/chromium_factory.py
@@ -883,75 +883,26 @@ class ChromiumFactory(gclient_factory.GClientFactory):
P('pyauto_perf_tests', suite='PERFORMANCE', src_base='..',
factory_properties=fp, perf=True)
- # TODO(machenbach): Remove as soon as endure has fully migrated to
- # telemetry:
# Endurance tests.
- endure_tests = {
- 'control': [
- 'perf_endure.ChromeEndureControlTest.testControlAttachDetachDOMTree',
- 'perf_endure.ChromeEndureControlTest.'
- 'testControlAttachDetachDOMTreeWebDriver',
- ],
- 'docs': [
- 'perf_endure.ChromeEndureDocsTest.testDocsAlternatelyClickLists',
- ],
- 'gmail': [
- 'perf_endure.ChromeEndureGmailTest.testGmailComposeDiscard',
- 'perf_endure.ChromeEndureGmailTest.'
- 'testGmailAlternateThreadlistConversation',
- 'perf_endure.ChromeEndureGmailTest.testGmailAlternateTwoLabels',
- 'perf_endure.ChromeEndureGmailTest.testGmailExpandCollapseConversation',
- ],
- 'indexeddb': [
- 'perf_endure.IndexedDBOfflineTest.testOfflineOnline',
- ],
- 'plus': [
- 'perf_endure.ChromeEndurePlusTest.testPlusAlternatelyClickStreams',
- ],
- }
- # Live sites.
- if R('endure_control_tests'):
- f.AddChromeEndureTest('control', endure_tests['control'], fp)
- if R('endure_docs_tests'):
- f.AddChromeEndureTest('docs', endure_tests['docs'], fp)
- if R('endure_gmail_tests'):
- f.AddChromeEndureTest('gmail', endure_tests['gmail'], fp)
- if R('endure_indexeddb_tests'):
- f.AddChromeEndureTest('indexeddb', endure_tests['indexeddb'],
- fp)
- if R('endure_plus_tests'):
- f.AddChromeEndureTest('plus', endure_tests['plus'], fp)
- # Web Page Replay.
- if R('endure_docs_wpr_tests'):
- f.AddChromeEndureTest('docs_wpr', endure_tests['docs'], fp,
- wpr=True)
- if R('endure_gmail_wpr_tests'):
- f.AddChromeEndureTest('gmail_wpr', endure_tests['gmail'], fp,
- wpr=True)
- if R('endure_plus_wpr_tests'):
- f.AddChromeEndureTest('plus_wpr', endure_tests['plus'], fp,
- wpr=True)
-
- # Endure with telemetry.
if R('endure_calendar_tests'):
f.AddTelemetryTest('endure', 'calendar_forward_backward.json',
- step_name='endure_calendar', factory_properties=fp,
+ step_name='calendar', factory_properties=fp,
timeout=6000)
if R('endure_gmail_expand_collapse_tests'):
f.AddTelemetryTest('endure', 'gmail_expand_collapse_conversation.json',
- step_name='endure_gmail_expand_collapse',
+ step_name='gmail_exp_col',
factory_properties=fp, timeout=6000)
if R('endure_gmail_alt_label_tests'):
f.AddTelemetryTest('endure', 'gmail_alt_two_labels.json',
- step_name='endure_gmail_alt_labels',
+ step_name='gmail_labels',
factory_properties=fp, timeout=6000)
if R('endure_gmail_alt_threadlist_tests'):
f.AddTelemetryTest('endure', 'gmail_alt_threadlist_conversation.json',
- step_name='endure_gmail_alt_threadlist',
+ step_name='gmail_threadlist',
factory_properties=fp, timeout=6000)
if R('endure_plus_tests'):
f.AddTelemetryTest('endure', 'plus_alt_posts_photos.json',
- step_name='endure_plus', factory_properties=fp,
+ step_name='plus', factory_properties=fp,
timeout=6000)
# 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