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

Unified Diff: slave/skia_slave_scripts/run_gm.py

Issue 16907006: buildbots: only store/upload GM results we haven't seen before, to save time (Closed) Base URL: http://skia.googlecode.com/svn/buildbot/
Patch Set: Created 7 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: slave/skia_slave_scripts/run_gm.py
===================================================================
--- slave/skia_slave_scripts/run_gm.py (revision 9724)
+++ slave/skia_slave_scripts/run_gm.py (working copy)
@@ -22,7 +22,10 @@
self._gm_image_subdir)
cmd = ['--verbose',
'--writeChecksumBasedFilenames',
- '--writePath', output_dir,
+ # Don't bother writing out image files that match our expectations--
+ # we know that previous runs have already uploaded those!
+ '--mismatchPath', output_dir,
+ '--missingExpectationsPath', output_dir,
'--writeJsonSummaryPath', os.path.join(output_dir,
JSON_SUMMARY_FILENAME),
'--ignoreErrorTypes',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698