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

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

Issue 2409343003: In rebaseline-cl, also rebaseline tests with MISSING results. (Closed)
Patch Set: 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
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ff14c61367e520c2947765a6ca2cf60bcb325133..983d983381bb6ad59a0e43e7cafe5acfe98e354c 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
@@ -62,10 +62,10 @@ class RebaselineCLTest(BaseTestCase, LoggingTestCase):
tests = [
'fast/dom/prototype-taco.html',
'fast/dom/prototype-inheritance.html',
+ 'fast/dom/prototype-newtest.html',
'svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr.html',
]
for test in tests:
- # pylint: disable=protected-access
self._write(port.host.filesystem.join(port.layout_tests_dir(), test), 'contents')
def tearDown(self):
@@ -90,10 +90,12 @@ class RebaselineCLTest(BaseTestCase, LoggingTestCase):
self.command.execute(self.command_options(issue=11112222), [], self.tool)
self.assertLog([
'INFO: Tests to rebaseline:\n',
+ 'INFO: fast/dom/prototype-newtest.html: MOCK Try Win (5000)\n',
'INFO: svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr.html: MOCK Try Win (5000)\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-newtest.html\n',
'INFO: Rebaselining fast/dom/prototype-taco.html\n',
'INFO: Rebaselining svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr.html\n',
])
@@ -111,10 +113,12 @@ class RebaselineCLTest(BaseTestCase, LoggingTestCase):
self.command.execute(self.command_options(), [], self.tool)
self.assertLog([
'INFO: Tests to rebaseline:\n',
+ 'INFO: fast/dom/prototype-newtest.html: MOCK Try Win (5000)\n',
'INFO: svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr.html: MOCK Try Win (5000)\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-newtest.html\n',
'INFO: Rebaselining fast/dom/prototype-taco.html\n',
'INFO: Rebaselining svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr.html\n',
])
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698