blob: 216007f9a57ca3f9da65e615ade0224493e32908 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import page_sets
from core import perf_benchmark
from telemetry import benchmark
from telemetry.page import page_test
from telemetry.value import scalar
from telemetry.value import improvement_direction
class _OortOnlineMeasurement(page_test.PageTest):
def __init__(self):
super(_OortOnlineMeasurement, self).__init__()
def ValidateAndMeasurePage(self, page, tab, results):
tab.WaitForJavaScriptExpression('window.benchmarkFinished', 1000)
scores = tab.EvaluateJavaScript('window.benchmarkScore')
for score in scores:
valid = score['valid']
if valid:
results.AddValue(scalar.ScalarValue(
results.current_page, score['name'], 'score', score['score'],
important=True, improvement_direction=improvement_direction.UP))
@benchmark.Disabled('android')
class OortOnline(perf_benchmark.PerfBenchmark):
"""OortOnline benchmark that measures WebGL and V8 performance.
URL: http://oortonline.gl/#run
Info: http://v8project.blogspot.de/2015/10/jank-busters-part-one.html
"""
test = _OortOnlineMeasurement
@classmethod
def Name(cls):
return 'oortonline'
def CreateStorySet(self, options):
return page_sets.OortOnlinePageSet()
|