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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """ Run the Skia tests executable. """ 6 """ Run the Skia tests executable. """
7 7
8 from build_step import BuildStep 8 from build_step import BuildStep
9 import sys 9 import sys
10 10
11 11
12 class RunTests(BuildStep): 12 class RunTests(BuildStep):
13 def _Run(self): 13 def _Run(self):
14 self._test_args.extend(['--tmpDir', self._device_dirs.TmpDir()]) 14 self._test_args.extend(['--tmpDir', self._device_dirs.TmpDir()])
15 if 'Xoom' in self._builder_name:
16 # WritePixels fails on Xoom due to a bug which won't be fixed very soon.
17 # http://code.google.com/p/skia/issues/detail?id=1699
18 self._test_args.extend(['--match', '~WritePixels'])
15 self._flavor_utils.RunFlavoredCmd('tests', self._test_args) 19 self._flavor_utils.RunFlavoredCmd('tests', self._test_args)
16 20
17 21
18 if '__main__' == __name__: 22 if '__main__' == __name__:
19 sys.exit(BuildStep.RunBuildStep(RunTests)) 23 sys.exit(BuildStep.RunBuildStep(RunTests))
OLDNEW
« 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