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

Unified Diff: content/test/gpu/generate_buildbot_json.py

Issue 2535753003: Disable automatic retries of failing ANGLE tests. (Closed)
Patch Set: Rebase Created 4 years 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 | testing/buildbot/chromium.gpu.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/generate_buildbot_json.py
diff --git a/content/test/gpu/generate_buildbot_json.py b/content/test/gpu/generate_buildbot_json.py
index c0978eba21c44e7ab12b993380ab6247cccc616a..ad186392894529eb6dc2e7cba0a62a76b2e4394d 100755
--- a/content/test/gpu/generate_buildbot_json.py
+++ b/content/test/gpu/generate_buildbot_json.py
@@ -864,7 +864,12 @@ COMMON_GTESTS = {
],
},
],
- 'desktop_args': ['--use-gpu-in-tests']
+ 'desktop_args': [
+ '--use-gpu-in-tests',
+ # ANGLE test retries deliberately disabled to prevent flakiness.
+ # http://crbug.com/669196
+ '--test-launcher-retry-limit=0'
+ ]
},
'angle_unittests': {
'tester_configs': [
@@ -872,7 +877,12 @@ COMMON_GTESTS = {
'allow_on_android': True,
}
],
- 'desktop_args': ['--use-gpu-in-tests']
+ 'desktop_args': [
+ '--use-gpu-in-tests',
+ # ANGLE test retries deliberately disabled to prevent flakiness.
+ # http://crbug.com/669196
+ '--test-launcher-retry-limit=0'
+ ]
},
# Until the media-only tests are extracted from content_unittests,
# and audio_unittests and content_unittests can be run on the commit
« no previous file with comments | « no previous file | testing/buildbot/chromium.gpu.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698