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

Side by Side Diff: content/test/gpu/page_sets/pixel_tests.py

Issue 2358833002: Update pixel test expectation and add new worker tests (Closed)
Patch Set: minor change in test description Created 4 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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.story import story_set as story_set_module 5 from telemetry.story import story_set as story_set_module
6 6
7 import sys 7 import sys
8 8
9 from gpu_tests import gpu_test_base 9 from gpu_tests import gpu_test_base
10 10
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 self.AddStory(PixelTestsPage( 177 self.AddStory(PixelTestsPage(
178 url='file://../../data/gpu/pixel_offscreenCanvas_webgl_commit_main.html', 178 url='file://../../data/gpu/pixel_offscreenCanvas_webgl_commit_main.html',
179 name=base_name + '.OffscreenCanvasWebGLGreenBox' + es3_suffix, 179 name=base_name + '.OffscreenCanvasWebGLGreenBox' + es3_suffix,
180 test_rect=[0, 0, 300, 300], 180 test_rect=[0, 0, 300, 300],
181 revision=1, 181 revision=1,
182 story_set=self, 182 story_set=self,
183 shared_page_state_class=EnableExperimentalCanvasFeaturesSharedPageState, 183 shared_page_state_class=EnableExperimentalCanvasFeaturesSharedPageState,
184 expectations=expectations)) 184 expectations=expectations))
185 185
186 self.AddStory(PixelTestsPage( 186 self.AddStory(PixelTestsPage(
187 url='file://../../data/gpu/pixel_offscreenCanvas_webgl_commit_worker.html' ,
188 name=base_name + '.OffscreenCanvasWebGLRedBoxWorker' + es3_suffix,
189 test_rect=[0, 0, 300, 300],
190 revision=1,
191 story_set=self,
192 shared_page_state_class=EnableExperimentalCanvasFeaturesSharedPageState,
193 expectations=expectations))
194
195 self.AddStory(PixelTestsPage(
196 url='file://../../data/gpu/pixel_offscreenCanvas_2D_commit_main.html',
197 name=base_name + '.OffscreenCanvas2DGreenBox' + es3_suffix,
198 test_rect=[0, 0, 300, 300],
199 revision=1,
200 story_set=self,
201 shared_page_state_class=EnableExperimentalCanvasFeaturesSharedPageState,
202 expectations=expectations))
203
204 self.AddStory(PixelTestsPage(
205 url='file://../../data/gpu/pixel_offscreenCanvas_2D_commit_worker.html',
206 name=base_name + '.OffscreenCanvas2DGreenBoxWorker' + es3_suffix,
207 test_rect=[0, 0, 300, 300],
208 revision=1,
209 story_set=self,
210 shared_page_state_class=EnableExperimentalCanvasFeaturesSharedPageState,
211 expectations=expectations))
212
213 self.AddStory(PixelTestsPage(
187 url='file://../../data/gpu/pixel_canvas2d.html', 214 url='file://../../data/gpu/pixel_canvas2d.html',
188 name=base_name + '.Canvas2DRedBox' + es3_suffix, 215 name=base_name + '.Canvas2DRedBox' + es3_suffix,
189 test_rect=[0, 0, 300, 300], 216 test_rect=[0, 0, 300, 300],
190 revision=7, 217 revision=7,
191 story_set=self, 218 story_set=self,
192 shared_page_state_class=shared_page_state_class, 219 shared_page_state_class=shared_page_state_class,
193 expectations=expectations)) 220 expectations=expectations))
194 221
195 self.AddStory(PixelTestsPage( 222 self.AddStory(PixelTestsPage(
196 url='file://../../data/gpu/pixel_css3d.html', 223 url='file://../../data/gpu/pixel_css3d.html',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 story_set=self, 291 story_set=self,
265 shared_page_state_class=shared_page_state_class, 292 shared_page_state_class=shared_page_state_class,
266 expectations=expectations)) 293 expectations=expectations))
267 294
268 @property 295 @property
269 def allow_mixed_story_states(self): 296 def allow_mixed_story_states(self):
270 # Return True here in order to be able to add the same tests with 297 # Return True here in order to be able to add the same tests with
271 # a different SharedPageState on Mac which tests them with the 298 # a different SharedPageState on Mac which tests them with the
272 # Core Profile rendering path. 299 # Core Profile rendering path.
273 return True 300 return True
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698