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

Unified Diff: slave/skia_slave_scripts/run_gm.py

Issue 25820003: Use --resetGpuContext flag when running GM on Xoom (Closed) Base URL: http://skia.googlecode.com/svn/buildbot/
Patch Set: Created 7 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 | « 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 11470)
+++ slave/skia_slave_scripts/run_gm.py (working copy)
@@ -68,8 +68,12 @@
if additional_tests_to_ignore:
cmd.extend(['--ignoreTests'] + additional_tests_to_ignore)
- # msaa16 is flaky on Macs (driver bug?) so we skip the test for now
+ if 'Xoom' in self._builder_name:
+ # The Xoom's GPU will crash on some tests if we don't use this flag.
+ # http://code.google.com/p/skia/issues/detail?id=1434
+ cmd.append('--resetGpuContext')
if sys.platform == 'darwin':
+ # msaa16 is flaky on Macs (driver bug?) so we skip the test for now
cmd.extend(['--config', 'defaults', '~msaa16'])
elif ('RazrI' in self._builder_name or
'Nexus10' in self._builder_name or
« 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