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

Unified Diff: slave/skia_slave_scripts/run_tests.py

Issue 25437010: Skip WritePixels test 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_tests.py
===================================================================
--- slave/skia_slave_scripts/run_tests.py (revision 11470)
+++ slave/skia_slave_scripts/run_tests.py (working copy)
@@ -12,8 +12,12 @@
class RunTests(BuildStep):
def _Run(self):
self._test_args.extend(['--tmpDir', self._device_dirs.TmpDir()])
+ if 'Xoom' in self._builder_name:
+ # WritePixels fails on Xoom due to a bug which won't be fixed very soon.
+ # http://code.google.com/p/skia/issues/detail?id=1699
+ self._test_args.extend(['--match', '~WritePixels'])
self._flavor_utils.RunFlavoredCmd('tests', self._test_args)
if '__main__' == __name__:
- sys.exit(BuildStep.RunBuildStep(RunTests))
+ sys.exit(BuildStep.RunBuildStep(RunTests))
« 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