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

Side by Side Diff: content/test/gpu/gpu_tests/pixel.py

Issue 560153004: Telemetry: Fix exact_matches in telemetry.test_runner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move memory.py to memory_test.py to make the autogenerated name match the buildbot config Created 6 years, 3 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
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 from datetime import datetime 4 from datetime import datetime
5 import glob 5 import glob
6 import optparse 6 import optparse
7 import os 7 import os
8 import re 8 import re
9 9
10 import cloud_storage_test_base 10 import cloud_storage_test_base
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 if ref_png: 141 if ref_png:
142 return ref_png 142 return ref_png
143 143
144 print 'Reference image not found. Writing tab contents as reference.' 144 print 'Reference image not found. Writing tab contents as reference.'
145 145
146 self._WriteImage(image_path, screenshot) 146 self._WriteImage(image_path, screenshot)
147 return screenshot 147 return screenshot
148 148
149 class Pixel(cloud_storage_test_base.TestBase): 149 class Pixel(cloud_storage_test_base.TestBase):
150 test = _PixelValidator 150 test = _PixelValidator
151 page_set = page_sets.PixelTestsPageSet
152 151
153 @classmethod 152 @classmethod
154 def AddTestCommandLineArgs(cls, group): 153 def AddTestCommandLineArgs(cls, group):
155 super(Pixel, cls).AddTestCommandLineArgs(group) 154 super(Pixel, cls).AddTestCommandLineArgs(group)
156 group.add_option('--reference-dir', 155 group.add_option('--reference-dir',
157 help='Overrides the default on-disk location for reference images ' 156 help='Overrides the default on-disk location for reference images '
158 '(only used for local testing without a cloud storage account)', 157 '(only used for local testing without a cloud storage account)',
159 default=default_reference_image_dir) 158 default=default_reference_image_dir)
160 159
161 def CreatePageSet(self, options): 160 def CreatePageSet(self, options):
162 page_set = super(Pixel, self).CreatePageSet(options) 161 page_set = page_sets.PixelTestsPageSet()
163 for page in page_set.pages: 162 for page in page_set.pages:
164 page.script_to_evaluate_on_commit = test_harness_script 163 page.script_to_evaluate_on_commit = test_harness_script
165 return page_set 164 return page_set
166 165
167 def CreateExpectations(self, page_set): 166 def CreateExpectations(self, page_set):
168 return pixel_expectations.PixelExpectations() 167 return pixel_expectations.PixelExpectations()
OLDNEW
« no previous file with comments | « content/test/gpu/gpu_tests/memory_test_expectations.py ('k') | tools/telemetry/telemetry/test_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698