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

Side by Side Diff: tools/perf/benchmarks/image_decoding.py

Issue 83293009: Disable image_decoding_benchmark on android (and linux). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4
5 import sys
6
4 from telemetry import test 7 from telemetry import test
5 8
6 from measurements import image_decoding 9 from measurements import image_decoding
7 10
8 11
9 class ImageDecodingToughImageCases(test.Test): 12 class ImageDecodingToughImageCases(test.Test):
10 test = image_decoding.ImageDecoding 13 test = image_decoding.ImageDecoding
11 # TODO: Rename this page set to tough_image_cases.json 14 # TODO: Rename this page set to tough_image_cases.json
12 page_set = 'page_sets/image_decoding_measurement.json' 15 page_set = 'page_sets/image_decoding_measurement.json'
16
17 # crbug.com/323015
18 enabled = not sys.platform.startswith('linux')
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