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

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

Issue 311193003: [telemetry] Cleanups for benchmarks importing page sets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove description fo' realz. (from gpu tests) Created 6 years, 6 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 from telemetry import test 4 from telemetry import test
5 from telemetry.page import page 5 from telemetry.page import page
6 from telemetry.page import page_set 6 from telemetry.page import page_set
7 from telemetry.page import page_test 7 from telemetry.page import page_test
8 # pylint: disable=W0401,W0614 8 # pylint: disable=W0401,W0614
9 from telemetry.page.actions.all_page_actions import * 9 from telemetry.page.actions.all_page_actions import *
10 10
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 action_runner.NavigateToPage(self) 60 action_runner.NavigateToPage(self)
61 action_runner.RunAction( 61 action_runner.RunAction(
62 WaitAction({'javascript': 'webglTestHarness._finished'})) 62 WaitAction({'javascript': 'webglTestHarness._finished'}))
63 63
64 class WebglRobustness(test.Test): 64 class WebglRobustness(test.Test):
65 test = WebglConformanceValidator 65 test = WebglConformanceValidator
66 66
67 def CreatePageSet(self, options): 67 def CreatePageSet(self, options):
68 ps = page_set.PageSet( 68 ps = page_set.PageSet(
69 file_path=conformance_path, 69 file_path=conformance_path,
70 description='Test cases for WebGL robustness',
71 user_agent_type='desktop', 70 user_agent_type='desktop',
72 serving_dirs=['']) 71 serving_dirs=[''])
73 ps.AddPage(WebglRobustnessPage(ps, ps.base_dir)) 72 ps.AddPage(WebglRobustnessPage(ps, ps.base_dir))
74 return ps 73 return ps
OLDNEW
« no previous file with comments | « content/test/gpu/gpu_tests/webgl_conformance.py ('k') | content/test/gpu/page_sets/page_set_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698