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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py

Issue 2446463002: Fetch retry summary and use it to determine what tests to rebaseline. (Closed)
Patch Set: Rebase Created 4 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
index 04c49a98a83f535bf00da3397bc88e6f4be41d64..c7ffe4e336050e3c43e7b6c9b461f025c5f75be6 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py
@@ -59,6 +59,16 @@ class RebaselineCLTest(BaseTestCase, LoggingTestCase):
})
self.command.rietveld = Rietveld(web)
+ self.tool.buildbot.set_retry_sumary_json(Build('MOCK Try Win', 5000), json.dumps({
+ 'failures': [
+ 'fast/dom/prototype-newtest.html',
+ 'fast/dom/prototype-taco.html',
+ 'fast/dom/prototype-inheritance.html',
+ 'svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr.html',
+ ],
+ 'ignored': [],
+ }))
+
# Write to the mock filesystem so that these tests are considered to exist.
port = self.mac_port
tests = [
@@ -138,6 +148,27 @@ class RebaselineCLTest(BaseTestCase, LoggingTestCase):
'INFO: Rebaselining fast/dom/prototype-taco.html\n',
])
+ def test_execute_with_flaky_test_that_fails_on_retry(self):
wkorman 2016/10/24 21:47:38 Do we have test coverage to make sure with code ad
qyearsley 2016/10/25 21:53:52 In the first patchset: 1. scenario 1 isn't cover
wkorman 2016/10/25 23:15:34 LOL, I had it backwards, but thanks to the tests n
+ # In this example, the --only-changed-tests flag is not given, but
+ # svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr.html
+ # failed both with and without the patch in the try job, so it is not
+ # rebaselined.
+ self.tool.buildbot.set_retry_sumary_json(Build('MOCK Try Win', 5000), json.dumps({
+ 'failures': [
+ 'fast/dom/prototype-taco.html',
+ 'fast/dom/prototype-inheritance.html',
+ ],
+ 'ignored': ['svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr.html'],
+ }))
+ self.command.execute(self.command_options(issue=11112222, only_changed_tests=True), [], self.tool)
+ self.assertLog([
+ 'INFO: Tests to rebaseline:\n',
+ 'INFO: fast/dom/prototype-inheritance.html: MOCK Try Win (5000)\n',
+ 'INFO: fast/dom/prototype-taco.html: MOCK Try Win (5000)\n',
+ 'INFO: Rebaselining fast/dom/prototype-inheritance.html\n',
+ 'INFO: Rebaselining fast/dom/prototype-taco.html\n',
+ ])
+
def test_execute_with_nonexistent_test(self):
self.command.execute(self.command_options(issue=11112222), ['some/non/existent/test.html'], self.tool)
self.assertLog([

Powered by Google App Engine
This is Rietveld 408576698