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

Side by Side Diff: tools/perf/perf_tools/image_decoding_benchmark_unittest.py

Issue 12100007: Disable image decoding perf test for android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove method Created 7 years, 10 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 | « tools/perf/perf_tools/image_decoding_benchmark.py ('k') | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 4
5 from telemetry import multi_page_benchmark_unittest_base 5 from telemetry import multi_page_benchmark_unittest_base
6 from perf_tools import image_decoding_benchmark 6 # from perf_tools import image_decoding_benchmark
7 7
8 8
9 class ImageDecodingBenchmarkUnitTest( 9 class ImageDecodingBenchmarkUnitTest(
10 multi_page_benchmark_unittest_base.MultiPageBenchmarkUnitTestBase): 10 multi_page_benchmark_unittest_base.MultiPageBenchmarkUnitTestBase):
11 11
12 def testImageDecodingMeasurement(self): 12 def testImageDecodingMeasurement(self):
13 ps = self.CreatePageSetFromFileInUnittestDataDir('image_decoding.html') 13 # TODO(qinmin): uncomment this after we fix the image decoding benchmark
14 # for lazily decoded images
15 return
16 # ps = self.CreatePageSetFromFileInUnittestDataDir('image_decoding.html')
14 17
15 benchmark = image_decoding_benchmark.ImageDecoding() 18 # benchmark = image_decoding_benchmark.ImageDecoding()
16 all_results = self.RunBenchmark(benchmark, ps) 19 # all_results = self.RunBenchmark(benchmark, ps)
17 20
18 self.assertEqual(0, len(all_results.page_failures)) 21 # self.assertEqual(0, len(all_results.page_failures))
19 self.assertEqual(1, len(all_results.page_results)) 22 # self.assertEqual(1, len(all_results.page_results))
20 23
21 results0 = all_results.page_results[0] 24 # results0 = all_results.page_results[0]
22 self.assertTrue('ImageDecoding_avg' in results0) 25 # self.assertTrue('ImageDecoding_avg' in results0)
23 self.assertTrue(results0['ImageDecoding_avg'] > 0) 26 # self.assertTrue(results0['ImageDecoding_avg'] > 0)
OLDNEW
« no previous file with comments | « tools/perf/perf_tools/image_decoding_benchmark.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698