Commit 64803265 authored by Rakib M. Hasan's avatar Rakib M. Hasan Committed by Commit Bot

[tools/perf] Translate old expectations file into a file that uses the new expectations format

We are attempting to standardize the expectations format. A new format has been created. Now we
have to make all the test/benchmark runners use the new format. This CL will make the src/perf
benchmarks use the new format of expectations.

The script used to translate the old expectations format into the new format can be found at
the following link, https://paste.googleplex.com/5236354608791552

The design document for the expectations format change can be found at
go/change-telemetry-benchmarks-expectations-format.

Bug: chromium:973936
Bug: chromium:992199
Change-Id: I83b0090958fe50517be6540d241be3e29c0925b1
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1737991Reviewed-by: default avatarCaleb Rouleau <crouleau@chromium.org>
Reviewed-by: default avatarJuan Antonio Navarro Pérez <perezju@chromium.org>
Commit-Queue: Rakib Hasan <rmhasan@google.com>
Cr-Commit-Position: refs/heads/master@{#685405}
parent eaa6a968
......@@ -40,6 +40,8 @@ def _GetPathsToPrepend(input_api):
chromium_src_dir = input_api.os_path.join(perf_dir, '..', '..')
telemetry_dir = input_api.os_path.join(
chromium_src_dir, 'third_party', 'catapult', 'telemetry')
typ_dir = input_api.os_path.join(
chromium_src_dir, 'third_party', 'catapult', 'third_party', 'typ')
experimental_dir = input_api.os_path.join(
chromium_src_dir, 'third_party', 'catapult', 'experimental')
tracing_dir = input_api.os_path.join(
......@@ -50,6 +52,7 @@ def _GetPathsToPrepend(input_api):
chromium_src_dir, 'build', 'android')
return [
telemetry_dir,
typ_dir,
input_api.os_path.join(telemetry_dir, 'third_party', 'mock'),
experimental_dir,
tracing_dir,
......
......@@ -6,6 +6,7 @@
import argparse
import json
import logging
import os
from core import benchmark_utils
......@@ -14,6 +15,8 @@ from core import path_util
path_util.AddTelemetryToPath()
path_util.AddAndroidPylibToPath()
from typ import expectations_parser as typ_expectations_parser
CLUSTER_TELEMETRY_DIR = os.path.join(
path_util.GetChromiumSrcDir(), 'tools', 'perf', 'contrib',
......@@ -23,16 +26,19 @@ CLUSTER_TELEMETRY_BENCHMARKS = [
benchmark_finders.GetBenchmarksInSubDirectory(CLUSTER_TELEMETRY_DIR)
]
def validate_story_names(benchmarks, raw_expectations_data):
def validate_story_names(benchmarks, test_expectations):
stories = []
for benchmark in benchmarks:
if benchmark.Name() in CLUSTER_TELEMETRY_BENCHMARKS:
continue
b = benchmark()
b.AugmentExpectationsWithParser(raw_expectations_data)
story_set = benchmark_utils.GetBenchmarkStorySet(b)
failed_stories = b.GetBrokenExpectations(story_set)
assert not failed_stories, 'Incorrect story names: %s' % str(failed_stories)
story_set = benchmark_utils.GetBenchmarkStorySet(benchmark())
stories.extend([benchmark.Name() + '/' + s.name for s in story_set.stories])
broken_expectations = test_expectations.check_for_broken_expectations(stories)
unused_patterns = ''
for pattern in set([e.test for e in broken_expectations]):
unused_patterns += ("Expectations with pattern '%s'"
" do not apply to any stories\n" % pattern)
assert not unused_patterns, unused_patterns
def GetDisabledStories(benchmarks, raw_expectations_data):
......@@ -73,9 +79,14 @@ def main(args):
benchmarks = benchmark_finders.GetAllBenchmarks()
with open(path_util.GetExpectationsPath()) as fp:
raw_expectations_data = fp.read()
test_expectations = typ_expectations_parser.TestExpectations()
ret, msg = test_expectations.parse_tagged_list(raw_expectations_data)
if ret:
logging.error(msg)
return ret
if options.list:
stories = GetDisabledStories(benchmarks, raw_expectations_data)
print json.dumps(stories, sort_keys=True, indent=4, separators=(',', ': '))
else:
validate_story_names(benchmarks, raw_expectations_data)
validate_story_names(benchmarks, test_expectations)
return 0
......@@ -8,6 +8,8 @@ from core import story_expectation_validator
from telemetry import benchmark
from telemetry import story
from typ import expectations_parser as typ_expectations_parser
class FakePage(object):
def __init__(self, name):
self._name = name
......@@ -40,32 +42,26 @@ class FakeBenchmark(benchmark.Benchmark):
class StoryExpectationValidatorTest(unittest.TestCase):
def testValidateStoryInValidName(self):
raw_expectations = '# tags: Mac\ncrbug.com/123 [ Mac ] b1/s1 [ Skip ]'
raw_expectations = ('# tags: [ Mac ]\n'
'# results: [ Skip ]\n'
'crbug.com/123 [ Mac ] b1/s1 [ Skip ]\n')
test_expectations = typ_expectations_parser.TestExpectations()
ret, _ = test_expectations.parse_tagged_list(raw_expectations)
self.assertFalse(ret)
benchmarks = [FakeBenchmark]
with self.assertRaises(AssertionError):
story_expectation_validator.validate_story_names(
benchmarks, raw_expectations)
benchmarks, test_expectations)
def testValidateStoryValidName(self):
raw_expectations = '# tags: Mac\ncrbug.com/123 [ Mac ] b1/One [ Skip ]'
raw_expectations = ('# tags: [ Mac] \n'
'# results: [ Skip ]\n'
'crbug.com/123 [ Mac ] b1/One [ Skip ]\n')
test_expectations = typ_expectations_parser.TestExpectations()
ret, _ = test_expectations.parse_tagged_list(raw_expectations)
self.assertFalse(ret)
benchmarks = [FakeBenchmark]
# If a name is invalid, an exception is thrown. If no exception is thrown
# all story names are valid. That is why there is no assert here.
story_expectation_validator.validate_story_names(
benchmarks, raw_expectations)
def testGetDisabledStoriesWithExpectationsData(self):
raw_expectations = '# tags: Mac\ncrbug.com/123 [ Mac ] b1/One [ Skip ]'
benchmarks = [FakeBenchmark]
results = story_expectation_validator.GetDisabledStories(
benchmarks, raw_expectations)
expected = {'b1': {'One': [(['Mac'], 'crbug.com/123')]}}
self.assertEqual(expected, results)
def testGetDisabledStoriesWithoutMatchingExpectationsData(self):
raw_expectations = '# tags: Mac\ncrbug.com/123 [ Mac ] b2/One [ Skip ]'
benchmarks = [FakeBenchmark]
results = story_expectation_validator.GetDisabledStories(
benchmarks, raw_expectations)
expected = { 'b1': {}}
self.assertEqual(expected, results)
benchmarks, test_expectations)
......@@ -2,434 +2,436 @@
# Instructions of how to use this file:
# https://chromium.googlesource.com/chromium/src/+/master/docs/speed/bot_health_sheriffing/how_to_disable_a_story.md
# tags: All Android_Go Android_One Android_Svelte Android_Low_End
# tags: Android_Webview Android_but_not_webview Mac Win Linux
# tags: ChromeOS Android Desktop Nexus_5 Nexus_5X Nexus_6P
# tags: Nexus_7 Mac_10.11 Mac_10.12 Nexus6_Webview Nexus5X_Webview
# tags: Pixel_2 Win_7 Win_10 Android_Go_Webview Pixel2_Webview
# tags: [ android android-go android-low-end android-nexus-5 android-nexus-5x
# android-nexus-6 android-pixel-2 chromeos desktop linux mac mac-10.12
# win win10 win7 ]
# tags: [ android-not-webview android-webview ]
# results: [ Skip ]
# conflicts_allowed: True
# Benchmark: blink_perf.bindings
crbug.com/882881 [ Nexus_5 ] blink_perf.bindings/structured-clone-json-deserialize.html [ Skip ]
crbug.com/910207 [ Nexus_5X ] blink_perf.bindings/structured-clone-json-deserialize.html [ Skip ]
crbug.com/882881 [ Nexus_5 ] blink_perf.bindings/structured-clone-json-serialize.html [ Skip ]
crbug.com/910207 [ Nexus_5X ] blink_perf.bindings/structured-clone-json-serialize.html [ Skip ]
crbug.com/882881 [ Nexus_5 ] blink_perf.bindings/structured-clone-long-string-deserialize.html [ Skip ]
crbug.com/910207 [ Nexus_5X ] blink_perf.bindings/structured-clone-long-string-deserialize.html [ Skip ]
crbug.com/931780 [ Android_Webview ] blink_perf.bindings/structured-clone-long-string-serialize.html [ Skip ]
crbug.com/893209 [ Android_Webview ] blink_perf.bindings/structured-clone-long-string-deserialize.html [ Skip ]
crbug.com/882881 [ Nexus_5 ] blink_perf.bindings/structured-clone-long-string-serialize.html [ Skip ]
crbug.com/910207 [ Nexus_5X ] blink_perf.bindings/structured-clone-long-string-serialize.html [ Skip ]
crbug.com/882881 [ Nexus_5 ] blink_perf.bindings/worker-structured-clone-json-roundtrip.html [ Skip ]
crbug.com/910207 [ Nexus_5X ] blink_perf.bindings/worker-structured-clone-json-roundtrip.html [ Skip ]
crbug.com/882881 [ Nexus_5 ] blink_perf.bindings/worker-structured-clone-json-to-worker.html [ Skip ]
crbug.com/882881 [ Nexus_5X ] blink_perf.bindings/worker-structured-clone-json-to-worker.html [ Skip ]
crbug.com/882881 [ Nexus_5 ] blink_perf.bindings/worker-structured-clone-json-from-worker.html [ Skip ]
crbug.com/882881 [ Nexus_5X ] blink_perf.bindings/worker-structured-clone-json-from-worker.html [ Skip ]
crbug.com/865400 [ Pixel_2 ] blink_perf.bindings/structured-clone-long-string-deserialize.html [ Skip ]
crbug.com/865400 [ Pixel_2 ] blink_perf.bindings/structured-clone-long-string-serialize.html [ Skip ]
crbug.com/882881 [ android-nexus-5 ] blink_perf.bindings/structured-clone-json-deserialize.html [ Skip ]
crbug.com/910207 [ android-nexus-5x ] blink_perf.bindings/structured-clone-json-deserialize.html [ Skip ]
crbug.com/882881 [ android-nexus-5 ] blink_perf.bindings/structured-clone-json-serialize.html [ Skip ]
crbug.com/910207 [ android-nexus-5x ] blink_perf.bindings/structured-clone-json-serialize.html [ Skip ]
crbug.com/882881 [ android-nexus-5 ] blink_perf.bindings/structured-clone-long-string-deserialize.html [ Skip ]
crbug.com/910207 [ android-nexus-5x ] blink_perf.bindings/structured-clone-long-string-deserialize.html [ Skip ]
crbug.com/931780 [ android-webview ] blink_perf.bindings/structured-clone-long-string-serialize.html [ Skip ]
crbug.com/893209 [ android-webview ] blink_perf.bindings/structured-clone-long-string-deserialize.html [ Skip ]
crbug.com/882881 [ android-nexus-5 ] blink_perf.bindings/structured-clone-long-string-serialize.html [ Skip ]
crbug.com/910207 [ android-nexus-5x ] blink_perf.bindings/structured-clone-long-string-serialize.html [ Skip ]
crbug.com/882881 [ android-nexus-5 ] blink_perf.bindings/worker-structured-clone-json-roundtrip.html [ Skip ]
crbug.com/910207 [ android-nexus-5x ] blink_perf.bindings/worker-structured-clone-json-roundtrip.html [ Skip ]
crbug.com/882881 [ android-nexus-5 ] blink_perf.bindings/worker-structured-clone-json-to-worker.html [ Skip ]
crbug.com/882881 [ android-nexus-5x ] blink_perf.bindings/worker-structured-clone-json-to-worker.html [ Skip ]
crbug.com/882881 [ android-nexus-5 ] blink_perf.bindings/worker-structured-clone-json-from-worker.html [ Skip ]
crbug.com/882881 [ android-nexus-5x ] blink_perf.bindings/worker-structured-clone-json-from-worker.html [ Skip ]
crbug.com/865400 [ android-pixel-2 ] blink_perf.bindings/structured-clone-long-string-deserialize.html [ Skip ]
crbug.com/865400 [ android-pixel-2 ] blink_perf.bindings/structured-clone-long-string-serialize.html [ Skip ]
# Benchmark: blink_perf.canvas
crbug.com/593973 [ Android_Svelte ] blink_perf.canvas/* [ Skip ]
crbug.com/784540 [ Nexus_5 ] blink_perf.canvas/draw-static-canvas-2d-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/784540 [ Nexus_5X ] blink_perf.canvas/draw-static-canvas-2d-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/784540 [ Nexus_5 ] blink_perf.canvas/draw-dynamic-canvas-2d-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/784540 [ Nexus_5X ] blink_perf.canvas/draw-dynamic-canvas-2d-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/978500 [ Pixel2_Webview ] blink_perf.canvas/draw-dynamic-canvas-2d-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/978500 [ Nexus5X_Webview ] blink_perf.canvas/draw-dynamic-canvas-2d-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ Pixel2_Webview ] blink_perf.canvas/draw-dynamic-canvas-2d-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ Android ] blink_perf.canvas/draw-dynamic-webgl-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/978500 [ Android_Webview ] blink_perf.canvas/draw-dynamic-webgl-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/978500 [ Nexus_5 ] blink_perf.canvas/draw-dynamic-canvas-2d-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ Nexus_5 ] blink_perf.canvas/draw-static-canvas-2d-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ Nexus_5 ] blink_perf.canvas/draw-static-webgl-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ Nexus5X_Webview ] blink_perf.canvas/draw-static-canvas-2d-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ Pixel2_Webview ] blink_perf.canvas/draw-static-canvas-2d-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ Nexus5X_Webview ] blink_perf.canvas/draw-static-webgl-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ Pixel2_Webview ] blink_perf.canvas/draw-static-webgl-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/853738 [ Android_Webview ] blink_perf.canvas/draw-video-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/979829 [ Android ] blink_perf.canvas/draw-video-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/853738 [ Android_Webview ] blink_perf.canvas/upload-video-to-sub-texture.html [ Skip ]
crbug.com/853738 [ Android_Webview ] blink_perf.canvas/upload-video-to-texture.html [ Skip ]
crbug.com/967809 [ Android_Webview ] blink_perf.canvas/draw-video-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/967809 [ Android_Webview ] blink_perf.canvas/upload-video-to-sub-texture_RAF.html?RAF [ Skip ]
crbug.com/967809 [ Android_Webview ] blink_perf.canvas/upload-video-to-texture_RAF.html?RAF [ Skip ]
crbug.com/978159 [ Nexus_5X ] blink_perf.canvas/* [ Skip ]
crbug.com/978159 [ Nexus5X_Webview ] blink_perf.canvas/* [ Skip ]
crbug.com/593973 [ android-low-end ] blink_perf.canvas/* [ Skip ]
crbug.com/784540 [ android-nexus-5 ] blink_perf.canvas/draw-static-canvas-2d-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/784540 [ android-nexus-5x ] blink_perf.canvas/draw-static-canvas-2d-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/784540 [ android-nexus-5 ] blink_perf.canvas/draw-dynamic-canvas-2d-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/784540 [ android-nexus-5x ] blink_perf.canvas/draw-dynamic-canvas-2d-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/978500 [ android-pixel-2 android-webview ] blink_perf.canvas/draw-dynamic-canvas-2d-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/978500 [ android-nexus-5x android-webview ] blink_perf.canvas/draw-dynamic-canvas-2d-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ android-pixel-2 android-webview ] blink_perf.canvas/draw-dynamic-canvas-2d-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ android ] blink_perf.canvas/draw-dynamic-webgl-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/978500 [ android-webview ] blink_perf.canvas/draw-dynamic-webgl-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/978500 [ android-nexus-5 ] blink_perf.canvas/draw-dynamic-canvas-2d-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ android-nexus-5 ] blink_perf.canvas/draw-static-canvas-2d-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ android-nexus-5 ] blink_perf.canvas/draw-static-webgl-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ android-nexus-5x android-webview ] blink_perf.canvas/draw-static-canvas-2d-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ android-pixel-2 android-webview ] blink_perf.canvas/draw-static-canvas-2d-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ android-nexus-5x android-webview ] blink_perf.canvas/draw-static-webgl-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/978500 [ android-pixel-2 android-webview ] blink_perf.canvas/draw-static-webgl-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/853738 [ android-webview ] blink_perf.canvas/draw-video-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/979829 [ android ] blink_perf.canvas/draw-video-to-hw-accelerated-canvas-2d.html [ Skip ]
crbug.com/853738 [ android-webview ] blink_perf.canvas/upload-video-to-sub-texture.html [ Skip ]
crbug.com/853738 [ android-webview ] blink_perf.canvas/upload-video-to-texture.html [ Skip ]
crbug.com/967809 [ android-webview ] blink_perf.canvas/draw-video-to-hw-accelerated-canvas-2d_RAF.html?RAF [ Skip ]
crbug.com/967809 [ android-webview ] blink_perf.canvas/upload-video-to-sub-texture_RAF.html?RAF [ Skip ]
crbug.com/967809 [ android-webview ] blink_perf.canvas/upload-video-to-texture_RAF.html?RAF [ Skip ]
crbug.com/978159 [ android-nexus-5x ] blink_perf.canvas/* [ Skip ]
crbug.com/978159 [ android-nexus-5x android-webview ] blink_perf.canvas/* [ Skip ]
# Benchmark: blink_perf.css
crbug.com/891878 [ Nexus5X_Webview ] blink_perf.css/CustomPropertiesVarAlias.html [ Skip ]
crbug.com/983728 [ All ] blink_perf.css/ClassDescendantSelector.html [ Skip ]
crbug.com/983728 [ All ] blink_perf.css/ClassInvalidation.html [ Skip ]
crbug.com/983728 [ All ] blink_perf.css/CustomPropertiesCascade.html [ Skip ]
crbug.com/983728 [ All ] blink_perf.css/CustomPropertiesNonRootInheritance.html [ Skip ]
crbug.com/983728 [ All ] blink_perf.css/CustomPropertiesRootInheritance.html [ Skip ]
crbug.com/983728 [ All ] blink_perf.css/CustomPropertiesVarAlias.html [ Skip ]
crbug.com/983728 [ All ] blink_perf.css/FocusUpdate.html [ Skip ]
crbug.com/983728 [ All ] blink_perf.css/PseudoClassSelectors.html [ Skip ]
crbug.com/983728 [ All ] blink_perf.css/SelectorCountScaling.html [ Skip ]
crbug.com/891878 [ android-nexus-5x android-webview ] blink_perf.css/CustomPropertiesVarAlias.html [ Skip ]
crbug.com/983728 blink_perf.css/ClassDescendantSelector.html [ Skip ]
crbug.com/983728 blink_perf.css/ClassInvalidation.html [ Skip ]
crbug.com/983728 blink_perf.css/CustomPropertiesCascade.html [ Skip ]
crbug.com/983728 blink_perf.css/CustomPropertiesNonRootInheritance.html [ Skip ]
crbug.com/983728 blink_perf.css/CustomPropertiesRootInheritance.html [ Skip ]
crbug.com/983728 blink_perf.css/CustomPropertiesVarAlias.html [ Skip ]
crbug.com/983728 blink_perf.css/FocusUpdate.html [ Skip ]
crbug.com/983728 blink_perf.css/PseudoClassSelectors.html [ Skip ]
crbug.com/983728 blink_perf.css/SelectorCountScaling.html [ Skip ]
# Benchmark: blink_perf.events
crbug.com/986423 [ Nexus5X_Webview ] blink_perf.events/EventsDispatchingInDeeplyNestedV0ShadowTrees.html [ Skip ]
crbug.com/986423 [ Nexus5X_Webview ] blink_perf.events/EventsDispatchingInDeeplyNestedV1ShadowTrees.html [ Skip ]
crbug.com/986423 [ Nexus5X_Webview ] blink_perf.events/EventsDispatchingInV0ShadowTrees.html [ Skip ]
crbug.com/986423 [ Nexus5X_Webview ] blink_perf.events/EventsDispatchingInV1ShadowTrees.html [ Skip ]
crbug.com/986423 [ android-nexus-5x android-webview ] blink_perf.events/EventsDispatchingInDeeplyNestedV0ShadowTrees.html [ Skip ]
crbug.com/986423 [ android-nexus-5x android-webview ] blink_perf.events/EventsDispatchingInDeeplyNestedV1ShadowTrees.html [ Skip ]
crbug.com/986423 [ android-nexus-5x android-webview ] blink_perf.events/EventsDispatchingInV0ShadowTrees.html [ Skip ]
crbug.com/986423 [ android-nexus-5x android-webview ] blink_perf.events/EventsDispatchingInV1ShadowTrees.html [ Skip ]
# Benchmark: blink_perf.layout
crbug.com/551950 [ Android_Svelte ] blink_perf.layout/* [ Skip ]
crbug.com/832686 [ Nexus_5 ] blink_perf.layout/subtree-detaching.html [ Skip ]
crbug.com/910207 [ Nexus_5X ] blink_perf.layout/subtree-detaching.html [ Skip ]
crbug.com/966921 [ Android ] blink_perf.layout/line-layout-fit-content.html [ Skip ]
crbug.com/966921 [ Android ] blink_perf.layout/line-layout-fit-content-break-word.html [ Skip ]
crbug.com/551950 [ android-low-end ] blink_perf.layout/* [ Skip ]
crbug.com/832686 [ android-nexus-5 ] blink_perf.layout/subtree-detaching.html [ Skip ]
crbug.com/910207 [ android-nexus-5x ] blink_perf.layout/subtree-detaching.html [ Skip ]
crbug.com/966921 [ android ] blink_perf.layout/line-layout-fit-content.html [ Skip ]
crbug.com/966921 [ android ] blink_perf.layout/line-layout-fit-content-break-word.html [ Skip ]
# Benchmark: blink_perf.paint
crbug.com/574483 [ Android_Svelte ] blink_perf.paint/* [ Skip ]
crbug.com/799540 [ Nexus_5 ] blink_perf.paint/* [ Skip ]
crbug.com/910207 [ Nexus_5X ] blink_perf.paint/* [ Skip ]
crbug.com/859979 [ Android_Webview ] blink_perf.paint/paint-offset-changes.html [ Skip ]
crbug.com/901493 [ Nexus6_Webview ] blink_perf.paint/* [ Skip ]
crbug.com/963967 [ Android ] blink_perf.paint/select-all-words.html [ Skip ]
crbug.com/966636 [ Pixel2_Webview ] blink_perf.paint/select-all-words.html [ Skip ]
crbug.com/574483 [ android-low-end ] blink_perf.paint/* [ Skip ]
crbug.com/799540 [ android-nexus-5 ] blink_perf.paint/* [ Skip ]
crbug.com/910207 [ android-nexus-5x ] blink_perf.paint/* [ Skip ]
crbug.com/859979 [ android-webview ] blink_perf.paint/paint-offset-changes.html [ Skip ]
crbug.com/901493 [ android-nexus-6 android-webview ] blink_perf.paint/* [ Skip ]
crbug.com/963967 [ android ] blink_perf.paint/select-all-words.html [ Skip ]
crbug.com/966636 [ android-pixel-2 android-webview ] blink_perf.paint/select-all-words.html [ Skip ]
# Benchmark: blink_perf.parser
crbug.com/966913 [ Nexus5X_Webview ] blink_perf.parser/query-selector-all-class-deep.html [ Skip ]
crbug.com/966913 [ Nexus5X_Webview ] blink_perf.parser/query-selector-all-deep.html [ Skip ]
crbug.com/966913 [ Nexus5X_Webview ] blink_perf.parser/query-selector-all-id-deep.html [ Skip ]
crbug.com/966613 [ Pixel_2 ] blink_perf.parser/query-selector-all-class-deep.html [ Skip ]
crbug.com/966613 [ Pixel_2 ] blink_perf.parser/query-selector-all-deep.html [ Skip ]
crbug.com/966613 [ Pixel_2 ] blink_perf.parser/query-selector-all-id-deep.html [ Skip ]
crbug.com/966913 [ android-nexus-5x android-webview ] blink_perf.parser/query-selector-all-class-deep.html [ Skip ]
crbug.com/966913 [ android-nexus-5x android-webview ] blink_perf.parser/query-selector-all-deep.html [ Skip ]
crbug.com/966913 [ android-nexus-5x android-webview ] blink_perf.parser/query-selector-all-id-deep.html [ Skip ]
crbug.com/966613 [ android-pixel-2 ] blink_perf.parser/query-selector-all-class-deep.html [ Skip ]
crbug.com/966613 [ android-pixel-2 ] blink_perf.parser/query-selector-all-deep.html [ Skip ]
crbug.com/966613 [ android-pixel-2 ] blink_perf.parser/query-selector-all-id-deep.html [ Skip ]
# Benchmark: blink_perf.shadow_dom
crbug.com/702319 [ Nexus_5X ] blink_perf.shadow_dom/* [ Skip ]
crbug.com/702319 [ android-nexus-5x ] blink_perf.shadow_dom/* [ Skip ]
# Benchmark: dromaeo
crbug.com/984578 [ Linux ] dromaeo/http://dromaeo.com?dom-modify [ Skip ]
crbug.com/984578 [ linux ] dromaeo/http://dromaeo.com?dom-modify [ Skip ]
# Benchmark: dummy_benchmark
crbug.com/848900 [ Win ] dummy_benchmark.stable_benchmark_1/dummy_page.html [ Skip ]
crbug.com/848900 [ win ] dummy_benchmark.stable_benchmark_1/dummy_page.html [ Skip ]
# Benchmark: blink_perf.svg
crbug.com/736817 [ Nexus_5X ] blink_perf.svg/SvgCubics.html [ Skip ]
crbug.com/736817 [ Nexus_5X ] blink_perf.svg/Debian.html [ Skip ]
crbug.com/736817 [ Nexus_5X ] blink_perf.svg/HarveyRayner.html [ Skip ]
crbug.com/736817 [ Nexus_5X ] blink_perf.svg/CrawFishGanson.html [ Skip ]
crbug.com/736817 [ Nexus_5X ] blink_perf.svg/Worldcup.html [ Skip ]
crbug.com/736817 [ Nexus_5X ] blink_perf.svg/FlowerFromMyGarden.html [ Skip ]
crbug.com/736817 [ Nexus_5X ] blink_perf.svg/SvgNestedUse.html [ Skip ]
crbug.com/846061 [ Win Mac ] blink_perf.svg/SierpinskiCarpet.html [ Skip ]
crbug.com/850293 [ All ] blink_perf.svg/Cowboy_transform.html [ Skip ]
crbug.com/894147 [ Nexus_5 ] blink_perf.svg/SierpinskiCarpet.html [ Skip ]
crbug.com/894147 [ Nexus_5X ] blink_perf.svg/SierpinskiCarpet.html [ Skip ]
crbug.com/736817 [ android-nexus-5x ] blink_perf.svg/SvgCubics.html [ Skip ]
crbug.com/736817 [ android-nexus-5x ] blink_perf.svg/Debian.html [ Skip ]
crbug.com/736817 [ android-nexus-5x ] blink_perf.svg/HarveyRayner.html [ Skip ]
crbug.com/736817 [ android-nexus-5x ] blink_perf.svg/CrawFishGanson.html [ Skip ]
crbug.com/736817 [ android-nexus-5x ] blink_perf.svg/Worldcup.html [ Skip ]
crbug.com/736817 [ android-nexus-5x ] blink_perf.svg/FlowerFromMyGarden.html [ Skip ]
crbug.com/736817 [ android-nexus-5x ] blink_perf.svg/SvgNestedUse.html [ Skip ]
crbug.com/846061 [ win ] blink_perf.svg/SierpinskiCarpet.html [ Skip ]
crbug.com/846061 [ mac ] blink_perf.svg/SierpinskiCarpet.html [ Skip ]
crbug.com/850293 blink_perf.svg/Cowboy_transform.html [ Skip ]
crbug.com/894147 [ android-nexus-5 ] blink_perf.svg/SierpinskiCarpet.html [ Skip ]
crbug.com/894147 [ android-nexus-5x ] blink_perf.svg/SierpinskiCarpet.html [ Skip ]
# Benchmark: jetstream
crbug.com/830600 [ Nexus5X_Webview ] jetstream/http://browserbench.org/JetStream/ [ Skip ]
crbug.com/830600 [ android-nexus-5x android-webview ] jetstream/http://browserbench.org/JetStream/ [ Skip ]
# Benchmark: loading.desktop
crbug.com/723783 [ Win ] loading.desktop/Orange_cold [ Skip ]
crbug.com/723783 [ Win ] loading.desktop/Orange_warm [ Skip ]
crbug.com/752611 [ Linux ] loading.desktop/uol.com.br_cold [ Skip ]
crbug.com/752611 [ Linux ] loading.desktop/uol.com.br_warm [ Skip ]
crbug.com/867836 [ All ] loading.desktop/Elmundo_warm [ Skip ]
crbug.com/876636 [ ChromeOS ] loading.desktop/TheOnion_cold [ Skip ]
crbug.com/876636 [ ChromeOS ] loading.desktop/TheOnion_warm [ Skip ]
crbug.com/876636 [ Win_10 ] loading.desktop/TheOnion_warm [ Skip ]
crbug.com/876636 [ Win_7 ] loading.desktop/TheOnion_warm [ Skip ]
crbug.com/876636 [ ChromeOS ] loading.desktop/AllRecipes_cold [ Skip ]
crbug.com/876636 [ ChromeOS ] loading.desktop/AllRecipes_warm [ Skip ]
crbug.com/879833 [ Mac_10.12 ] loading.desktop/AllRecipes_cold [ Skip ]
crbug.com/879833 [ Win ] loading.desktop/AllRecipes_cold [ Skip ]
crbug.com/879833 [ All ] loading.desktop/Walgreens_cold [ Skip ]
crbug.com/879833 [ All ] loading.desktop/Walgreens_warm [ Skip ]
crbug.com/921428 [ ChromeOS ] loading.desktop/TheVerge_cold [ Skip ]
crbug.com/921428 [ ChromeOS ] loading.desktop/TheVerge_warm [ Skip ]
crbug.com/723783 [ win ] loading.desktop/Orange_cold [ Skip ]
crbug.com/723783 [ win ] loading.desktop/Orange_warm [ Skip ]
crbug.com/752611 [ linux ] loading.desktop/uol.com.br_cold [ Skip ]
crbug.com/752611 [ linux ] loading.desktop/uol.com.br_warm [ Skip ]
crbug.com/867836 loading.desktop/Elmundo_warm [ Skip ]
crbug.com/876636 [ chromeos ] loading.desktop/TheOnion_cold [ Skip ]
crbug.com/876636 [ chromeos ] loading.desktop/TheOnion_warm [ Skip ]
crbug.com/876636 [ win10 ] loading.desktop/TheOnion_warm [ Skip ]
crbug.com/876636 [ win7 ] loading.desktop/TheOnion_warm [ Skip ]
crbug.com/876636 [ chromeos ] loading.desktop/AllRecipes_cold [ Skip ]
crbug.com/876636 [ chromeos ] loading.desktop/AllRecipes_warm [ Skip ]
crbug.com/879833 [ mac-10.12 ] loading.desktop/AllRecipes_cold [ Skip ]
crbug.com/879833 [ win ] loading.desktop/AllRecipes_cold [ Skip ]
crbug.com/879833 loading.desktop/Walgreens_cold [ Skip ]
crbug.com/879833 loading.desktop/Walgreens_warm [ Skip ]
crbug.com/921428 [ chromeos ] loading.desktop/TheVerge_cold [ Skip ]
crbug.com/921428 [ chromeos ] loading.desktop/TheVerge_warm [ Skip ]
# Benchmark: loading.mobile
crbug.com/656861 [ All ] loading.mobile/G1 [ Skip ]
crbug.com/857108 [ Nexus_5 ] loading.mobile/G1_3g [ Skip ]
crbug.com/910207 [ Nexus_5X ] loading.mobile/G1_3g [ Skip ]
[ Nexus_5X ] loading.mobile/Hongkiat [ Skip ]
[ Nexus_5X ] loading.mobile/Dramaq [ Skip ]
crbug.com/859597 [ All ] loading.mobile/Bradesco_3g [ Skip ]
crbug.com/859597 [ All ] loading.mobile/Dailymotion_3g [ Skip ]
crbug.com/859597 [ All ] loading.mobile/Dawn_3g [ Skip ]
crbug.com/859597 [ All ] loading.mobile/FlipKart_cold_3g [ Skip ]
crbug.com/942631 [ All ] loading.mobile/Facebook_3g [ Skip ]
crbug.com/859597 [ All ] loading.mobile/G1_3g [ Skip ]
crbug.com/859597 [ All ] loading.mobile/GSShop_3g [ Skip ]
crbug.com/859597 [ All ] loading.mobile/GoogleIndia_3g [ Skip ]
crbug.com/859597 [ All ] loading.mobile/KapanLagi_3g [ Skip ]
crbug.com/859597 [ All ] loading.mobile/Kaskus_3g [ Skip ]
crbug.com/859597 [ All ] loading.mobile/LocalMoxie_3g [ Skip ]
crbug.com/859597 [ All ] loading.mobile/Thairath_3g [ Skip ]
crbug.com/859597 [ All ] loading.mobile/TheStar_3g [ Skip ]
crbug.com/859597 [ All ] loading.mobile/YahooNews_3g [ Skip ]
crbug.com/942631 [ All ] loading.mobile/VoiceMemos_hot [ Skip ]
crbug.com/942631 [ All ] loading.mobile/VoiceMemos_warm [ Skip ]
crbug.com/942631 [ All ] loading.mobile/VoiceMemos_hot_3g [ Skip ]
crbug.com/942631 [ All ] loading.mobile/VoiceMemos_warm_3g [ Skip ]
crbug.com/859597 [ Nexus_5 ] loading.mobile/FlipBoard_cold_3g [ Skip ]
crbug.com/862663 [ Nexus_5 ] loading.mobile/GoogleBrazil_3g [ Skip ]
crbug.com/910207 [ Nexus_5X ] loading.mobile/GoogleBrazil_3g [ Skip ]
crbug.com/862663 [ Nexus_5 ] loading.mobile/GoogleIndonesia_3g [ Skip ]
crbug.com/862663 [ Nexus_5 ] loading.mobile/GoogleRedirectToGoogleJapan_3g [ Skip ]
crbug.com/910207 [ Nexus_5X ] loading.mobile/GoogleRedirectToGoogleJapan_3g [ Skip ]
crbug.com/859597 [ Nexus_5X ] loading.mobile/FlipBoard_cold_3g [ Skip ]
crbug.com/859597 [ Nexus_5 ] loading.mobile/Hongkiat_3g [ Skip ]
crbug.com/859597 [ Nexus_5X ] loading.mobile/Hongkiat_3g [ Skip ]
crbug.com/859597 [ Nexus5X_Webview ] loading.mobile/Hongkiat_3g [ Skip ]
crbug.com/896088 [ Nexus_5 ] loading.mobile/TribunNews_3g [ Skip ]
crbug.com/859597 [ Nexus_5X ] loading.mobile/TribunNews_3g [ Skip ]
crbug.com/859597 [ Nexus5X_Webview ] loading.mobile/TribunNews_3g [ Skip ]
crbug.com/859597 [ Nexus_5X ] loading.mobile/GoogleIndonesia_3g [ Skip ]
crbug.com/859597 [ Nexus_5X ] loading.mobile/QQNews_3g [ Skip ]
crbug.com/859597 [ Nexus_5X ] loading.mobile/Youtube_3g [ Skip ]
crbug.com/859597 [ Nexus5X_Webview ] loading.mobile/GoogleBrazil_3g [ Skip ]
crbug.com/867103 [ Nexus5X_Webview ] loading.mobile/FlipBoard_warm_3g [ Skip ]
crbug.com/873032 [ Android_Webview ] loading.mobile/GoogleRedirectToGoogleJapan_3g [ Skip ]
crbug.com/873033 [ Android_but_not_webview ] loading.mobile/FlipKart_warm_3g [ Skip ]
crbug.com/676612 [ Nexus6_Webview ] loading.mobile/FlipBoard_cold_3g [ Skip ]
crbug.com/676612 [ Nexus6_Webview ] loading.mobile/FlipBoard_warm_3g [ Skip ]
crbug.com/676612 [ Nexus6_Webview ] loading.mobile/TribunNews_3g [ Skip ]
crbug.com/676612 [ Nexus6_Webview ] loading.mobile/FlipKart_warm_3g [ Skip ]
crbug.com/676612 [ Nexus6_Webview ] loading.mobile/OLX_3g [ Skip ]
crbug.com/676612 [ Nexus6_Webview ] loading.mobile/Youtube_3g [ Skip ]
crbug.com/676612 [ Nexus6_Webview ] loading.mobile/Hongkiat_3g [ Skip ]
crbug.com/676612 [ Nexus6_Webview ] loading.mobile/BOLNoticias_3g [ Skip ]
crbug.com/676612 [ Nexus6_Webview ] loading.mobile/GoogleBrazil_3g [ Skip ]
crbug.com/676612 [ Nexus6_Webview ] loading.mobile/GoogleIndonesia_3g [ Skip ]
crbug.com/676612 [ Nexus6_Webview ] loading.mobile/Kaskus [ Skip ]
crbug.com/865400 [ Pixel_2 ] loading.mobile/TribunNews_3g [ Skip ]
crbug.com/865400 [ Pixel_2 ] loading.mobile/Youtube_3g [ Skip ]
crbug.com/914100 [ Nexus6_Webview ] loading.mobile/Wikipedia_3g [ Skip ]
crbug.com/865400 [ Pixel2_Webview ] loading.mobile/BOLNoticias_3g [ Skip ]
crbug.com/865400 [ Pixel2_Webview ] loading.mobile/FlipBoard_cold_3g [ Skip ]
crbug.com/865400 [ Pixel2_Webview ] loading.mobile/FlipBoard_warm_3g [ Skip ]
crbug.com/865400 [ Pixel2_Webview ] loading.mobile/FlipKart_warm_3g [ Skip ]
crbug.com/865400 [ Pixel2_Webview ] loading.mobile/GoogleBrazil_3g [ Skip ]
crbug.com/865400 [ Pixel2_Webview ] loading.mobile/GoogleIndonesia_3g [ Skip ]
crbug.com/865400 [ Pixel2_Webview ] loading.mobile/Hongkiat_3g [ Skip ]
crbug.com/865400 [ Pixel2_Webview ] loading.mobile/OLX_3g [ Skip ]
crbug.com/865400 [ Pixel2_Webview ] loading.mobile/VoiceMemos_cold_3g [ Skip ]
crbug.com/919191 [ Nexus5X_Webview ] loading.mobile/OLX_3g [ Skip ]
crbug.com/656861 loading.mobile/G1 [ Skip ]
crbug.com/857108 [ android-nexus-5 ] loading.mobile/G1_3g [ Skip ]
crbug.com/910207 [ android-nexus-5x ] loading.mobile/G1_3g [ Skip ]
[ android-nexus-5x ] loading.mobile/Hongkiat [ Skip ]
[ android-nexus-5x ] loading.mobile/Dramaq [ Skip ]
crbug.com/859597 loading.mobile/Bradesco_3g [ Skip ]
crbug.com/859597 loading.mobile/Dailymotion_3g [ Skip ]
crbug.com/859597 loading.mobile/Dawn_3g [ Skip ]
crbug.com/859597 loading.mobile/FlipKart_cold_3g [ Skip ]
crbug.com/942631 loading.mobile/Facebook_3g [ Skip ]
crbug.com/859597 loading.mobile/G1_3g [ Skip ]
crbug.com/859597 loading.mobile/GSShop_3g [ Skip ]
crbug.com/859597 loading.mobile/GoogleIndia_3g [ Skip ]
crbug.com/859597 loading.mobile/KapanLagi_3g [ Skip ]
crbug.com/859597 loading.mobile/Kaskus_3g [ Skip ]
crbug.com/859597 loading.mobile/LocalMoxie_3g [ Skip ]
crbug.com/859597 loading.mobile/Thairath_3g [ Skip ]
crbug.com/859597 loading.mobile/TheStar_3g [ Skip ]
crbug.com/859597 loading.mobile/YahooNews_3g [ Skip ]
crbug.com/942631 loading.mobile/VoiceMemos_hot [ Skip ]
crbug.com/942631 loading.mobile/VoiceMemos_warm [ Skip ]
crbug.com/942631 loading.mobile/VoiceMemos_hot_3g [ Skip ]
crbug.com/942631 loading.mobile/VoiceMemos_warm_3g [ Skip ]
crbug.com/859597 [ android-nexus-5 ] loading.mobile/FlipBoard_cold_3g [ Skip ]
crbug.com/862663 [ android-nexus-5 ] loading.mobile/GoogleBrazil_3g [ Skip ]
crbug.com/910207 [ android-nexus-5x ] loading.mobile/GoogleBrazil_3g [ Skip ]
crbug.com/862663 [ android-nexus-5 ] loading.mobile/GoogleIndonesia_3g [ Skip ]
crbug.com/862663 [ android-nexus-5 ] loading.mobile/GoogleRedirectToGoogleJapan_3g [ Skip ]
crbug.com/910207 [ android-nexus-5x ] loading.mobile/GoogleRedirectToGoogleJapan_3g [ Skip ]
crbug.com/859597 [ android-nexus-5x ] loading.mobile/FlipBoard_cold_3g [ Skip ]
crbug.com/859597 [ android-nexus-5 ] loading.mobile/Hongkiat_3g [ Skip ]
crbug.com/859597 [ android-nexus-5x ] loading.mobile/Hongkiat_3g [ Skip ]
crbug.com/859597 [ android-nexus-5x android-webview ] loading.mobile/Hongkiat_3g [ Skip ]
crbug.com/896088 [ android-nexus-5 ] loading.mobile/TribunNews_3g [ Skip ]
crbug.com/859597 [ android-nexus-5x ] loading.mobile/TribunNews_3g [ Skip ]
crbug.com/859597 [ android-nexus-5x android-webview ] loading.mobile/TribunNews_3g [ Skip ]
crbug.com/859597 [ android-nexus-5x ] loading.mobile/GoogleIndonesia_3g [ Skip ]
crbug.com/859597 [ android-nexus-5x ] loading.mobile/QQNews_3g [ Skip ]
crbug.com/859597 [ android-nexus-5x ] loading.mobile/Youtube_3g [ Skip ]
crbug.com/859597 [ android-nexus-5x android-webview ] loading.mobile/GoogleBrazil_3g [ Skip ]
crbug.com/867103 [ android-nexus-5x android-webview ] loading.mobile/FlipBoard_warm_3g [ Skip ]
crbug.com/873032 [ android-webview ] loading.mobile/GoogleRedirectToGoogleJapan_3g [ Skip ]
crbug.com/873033 [ android-not-webview ] loading.mobile/FlipKart_warm_3g [ Skip ]
crbug.com/676612 [ android-nexus-6 android-webview ] loading.mobile/FlipBoard_cold_3g [ Skip ]
crbug.com/676612 [ android-nexus-6 android-webview ] loading.mobile/FlipBoard_warm_3g [ Skip ]
crbug.com/676612 [ android-nexus-6 android-webview ] loading.mobile/TribunNews_3g [ Skip ]
crbug.com/676612 [ android-nexus-6 android-webview ] loading.mobile/FlipKart_warm_3g [ Skip ]
crbug.com/676612 [ android-nexus-6 android-webview ] loading.mobile/OLX_3g [ Skip ]
crbug.com/676612 [ android-nexus-6 android-webview ] loading.mobile/Youtube_3g [ Skip ]
crbug.com/676612 [ android-nexus-6 android-webview ] loading.mobile/Hongkiat_3g [ Skip ]
crbug.com/676612 [ android-nexus-6 android-webview ] loading.mobile/BOLNoticias_3g [ Skip ]
crbug.com/676612 [ android-nexus-6 android-webview ] loading.mobile/GoogleBrazil_3g [ Skip ]
crbug.com/676612 [ android-nexus-6 android-webview ] loading.mobile/GoogleIndonesia_3g [ Skip ]
crbug.com/676612 [ android-nexus-6 android-webview ] loading.mobile/Kaskus [ Skip ]
crbug.com/865400 [ android-pixel-2 ] loading.mobile/TribunNews_3g [ Skip ]
crbug.com/865400 [ android-pixel-2 ] loading.mobile/Youtube_3g [ Skip ]
crbug.com/914100 [ android-nexus-6 android-webview ] loading.mobile/Wikipedia_3g [ Skip ]
crbug.com/865400 [ android-pixel-2 android-webview ] loading.mobile/BOLNoticias_3g [ Skip ]
crbug.com/865400 [ android-pixel-2 android-webview ] loading.mobile/FlipBoard_cold_3g [ Skip ]
crbug.com/865400 [ android-pixel-2 android-webview ] loading.mobile/FlipBoard_warm_3g [ Skip ]
crbug.com/865400 [ android-pixel-2 android-webview ] loading.mobile/FlipKart_warm_3g [ Skip ]
crbug.com/865400 [ android-pixel-2 android-webview ] loading.mobile/GoogleBrazil_3g [ Skip ]
crbug.com/865400 [ android-pixel-2 android-webview ] loading.mobile/GoogleIndonesia_3g [ Skip ]
crbug.com/865400 [ android-pixel-2 android-webview ] loading.mobile/Hongkiat_3g [ Skip ]
crbug.com/865400 [ android-pixel-2 android-webview ] loading.mobile/OLX_3g [ Skip ]
crbug.com/865400 [ android-pixel-2 android-webview ] loading.mobile/VoiceMemos_cold_3g [ Skip ]
crbug.com/919191 [ android-nexus-5x android-webview ] loading.mobile/OLX_3g [ Skip ]
# Benchmark: oilpan_gc_times.key_silk_cases
crbug.com/446332 [ All ] oilpan_gc_times.key_silk_cases/slide_drawer [ Skip ]
crbug.com/507865 [ All ] oilpan_gc_times.key_silk_cases/polymer_topeka [ Skip ]
crbug.com/338838 [ All ] oilpan_gc_times.key_silk_cases/basic_stream [ Skip ]
crbug.com/446332 oilpan_gc_times.key_silk_cases/slide_drawer [ Skip ]
crbug.com/507865 oilpan_gc_times.key_silk_cases/polymer_topeka [ Skip ]
crbug.com/338838 oilpan_gc_times.key_silk_cases/basic_stream [ Skip ]
# Benchmark: oilpan_gc_times.sync_scroll.key_mobile_sites_smooth
crbug.com/756119 [ All ] oilpan_gc_times.sync_scroll.key_mobile_sites_smooth/digg [ Skip ]
crbug.com/756119 oilpan_gc_times.sync_scroll.key_mobile_sites_smooth/digg [ Skip ]
# Benchmark: rendering.desktop
crbug.com/755556 [ Mac ] rendering.desktop/mix_blend_mode_animation_difference [ Skip ]
crbug.com/755556 [ Mac ] rendering.desktop/mix_blend_mode_animation_hue [ Skip ]
crbug.com/755556 [ mac ] rendering.desktop/mix_blend_mode_animation_difference [ Skip ]
crbug.com/755556 [ mac ] rendering.desktop/mix_blend_mode_animation_hue [ Skip ]
# Benchmark: rendering.mobile
crbug.com/785485 [ Android_Webview ] rendering.mobile/kevs_3d [ Skip ]
crbug.com/785286 [ Android_Webview ] rendering.mobile/smash_cat [ Skip ]
crbug.com/785286 [ Android_Webview ] rendering.mobile/effect_games [ Skip ]
crbug.com/364248 [ Nexus_5 ] rendering.mobile/geo_apis [ Skip ]
crbug.com/910207 [ Nexus_5X ] rendering.mobile/geo_apis [ Skip ]
crbug.com/825234 [ Android_Webview ] rendering.mobile/bouncing_balls_shadow [ Skip ]
crbug.com/755556 [ Android ] rendering.mobile/balls_css_key_frame_animations_composited_transform [ Skip ]
crbug.com/840964 [ Nexus_5X ] rendering.mobile/web_animations_many_keyframes [ Skip ]
crbug.com/653993 [ Android_Webview ] rendering.mobile/maps_perf_test [ Skip ]
[ All ] rendering.mobile/core_scroll_header_panel [ Skip ] # Polymer test, needs to be modernized.
[ All ] rendering.mobile/paper_button [ Skip ] # Polymer test, needs to be modernized.
[ All ] rendering.mobile/paper_calculator [ Skip ] # Polymer test, needs to be modernized.
[ All ] rendering.mobile/paper_checkbox [ Skip ] # Polymer test, needs to be modernized.
[ All ] rendering.mobile/paper_fab [ Skip ] # Polymer test, needs to be modernized.
[ All ] rendering.mobile/paper_icon_button [ Skip ] # Polymer test, needs to be modernized.
[ All ] rendering.mobile/paper_shadow [ Skip ] # Polymer test, needs to be modernized.
[ All ] rendering.mobile/paper_tabs [ Skip ] # Polymer test, needs to be modernized.
[ All ] rendering.mobile/paper_toggle_button [ Skip ] # Polymer test, needs to be modernized.
crbug.com/785473 [ Android_Webview ] rendering.mobile/canvas_20000_pixels_per_second [ Skip ]
crbug.com/785473 [ Android_Webview ] rendering.mobile/canvas_40000_pixels_per_second [ Skip ]
crbug.com/785473 [ Android_Webview ] rendering.mobile/canvas_10000_pixels_per_second [ Skip ]
crbug.com/785473 [ Android_Webview ] rendering.mobile/canvas_75000_pixels_per_second [ Skip ]
crbug.com/785473 [ Android_Webview ] rendering.mobile/canvas_60000_pixels_per_second [ Skip ]
crbug.com/785473 [ Android_Webview ] rendering.mobile/canvas_90000_pixels_per_second [ Skip ]
crbug.com/850295 [ All ] rendering.mobile/aquarium_20k [ Skip ]
crbug.com/780525 [ All ] rendering.mobile/polymer_topeka [ Skip ]
crbug.com/461127 [ All ] rendering.mobile/famo_us_twitter_demo [ Skip ]
crbug.com/850295 [ All ] rendering.mobile/aquarium_20k [ Skip ]
crbug.com/750876 [ All ] rendering.mobile/paper_calculator_hit_test [ Skip ]
crbug.com/873013 [ Android_Webview ] rendering.mobile/yahoo_answers_mobile_2018 [ Skip ]
crbug.com/893197 [ Nexus_5X ] rendering.mobile/yahoo_answers_mobile_2018 [ Skip ]
crbug.com/865400 [ Pixel_2 ] rendering.mobile/yahoo_answers_mobile_2018 [ Skip ]
crbug.com/874935 [ Nexus_5 ] rendering.mobile/yahoo_news_2018 [ Skip ]
crbug.com/910207 [ Nexus_5X ] rendering.mobile/yahoo_news_2018 [ Skip ]
crbug.com/901526 [ All ] rendering.mobile/microsoft_fireflies [ Skip ]
crbug.com/924400 [ Nexus6_Webview ] rendering.mobile/canvas_animation_no_clear [ Skip ]
crbug.com/949366 [ Nexus5X_Webview ] rendering.mobile/google_news_mobile_2018 [ Skip ]
crbug.com/954948 [ Android_Webview ] rendering.mobile/cnn_mobile_pinch_2018 [ Skip ]
crbug.com/966637 [ Pixel2_Webview ] rendering.mobile/google_news_mobile_2018 [ Skip ]
crbug.com/967809 [ Android_Webview ] rendering.mobile/microsoft_video_city [ Skip ]
crbug.com/785485 [ android-webview ] rendering.mobile/kevs_3d [ Skip ]
crbug.com/785286 [ android-webview ] rendering.mobile/smash_cat [ Skip ]
crbug.com/785286 [ android-webview ] rendering.mobile/effect_games [ Skip ]
crbug.com/364248 [ android-nexus-5 ] rendering.mobile/geo_apis [ Skip ]
crbug.com/910207 [ android-nexus-5x ] rendering.mobile/geo_apis [ Skip ]
crbug.com/825234 [ android-webview ] rendering.mobile/bouncing_balls_shadow [ Skip ]
crbug.com/755556 [ android ] rendering.mobile/balls_css_key_frame_animations_composited_transform [ Skip ]
crbug.com/840964 [ android-nexus-5x ] rendering.mobile/web_animations_many_keyframes [ Skip ]
crbug.com/653993 [ android-webview ] rendering.mobile/maps_perf_test [ Skip ]
rendering.mobile/core_scroll_header_panel [ Skip ] # Polymer test, needs to be modernized.
rendering.mobile/paper_button [ Skip ] # Polymer test, needs to be modernized.
rendering.mobile/paper_calculator [ Skip ] # Polymer test, needs to be modernized.
rendering.mobile/paper_checkbox [ Skip ] # Polymer test, needs to be modernized.
rendering.mobile/paper_fab [ Skip ] # Polymer test, needs to be modernized.
rendering.mobile/paper_icon_button [ Skip ] # Polymer test, needs to be modernized.
rendering.mobile/paper_shadow [ Skip ] # Polymer test, needs to be modernized.
rendering.mobile/paper_tabs [ Skip ] # Polymer test, needs to be modernized.
rendering.mobile/paper_toggle_button [ Skip ] # Polymer test, needs to be modernized.
crbug.com/785473 [ android-webview ] rendering.mobile/canvas_20000_pixels_per_second [ Skip ]
crbug.com/785473 [ android-webview ] rendering.mobile/canvas_40000_pixels_per_second [ Skip ]
crbug.com/785473 [ android-webview ] rendering.mobile/canvas_10000_pixels_per_second [ Skip ]
crbug.com/785473 [ android-webview ] rendering.mobile/canvas_75000_pixels_per_second [ Skip ]
crbug.com/785473 [ android-webview ] rendering.mobile/canvas_60000_pixels_per_second [ Skip ]
crbug.com/785473 [ android-webview ] rendering.mobile/canvas_90000_pixels_per_second [ Skip ]
crbug.com/850295 rendering.mobile/aquarium_20k [ Skip ]
crbug.com/780525 rendering.mobile/polymer_topeka [ Skip ]
crbug.com/461127 rendering.mobile/famo_us_twitter_demo [ Skip ]
crbug.com/850295 rendering.mobile/aquarium_20k [ Skip ]
crbug.com/750876 rendering.mobile/paper_calculator_hit_test [ Skip ]
crbug.com/873013 [ android-webview ] rendering.mobile/yahoo_answers_mobile_2018 [ Skip ]
crbug.com/893197 [ android-nexus-5x ] rendering.mobile/yahoo_answers_mobile_2018 [ Skip ]
crbug.com/865400 [ android-pixel-2 ] rendering.mobile/yahoo_answers_mobile_2018 [ Skip ]
crbug.com/874935 [ android-nexus-5 ] rendering.mobile/yahoo_news_2018 [ Skip ]
crbug.com/910207 [ android-nexus-5x ] rendering.mobile/yahoo_news_2018 [ Skip ]
crbug.com/901526 rendering.mobile/microsoft_fireflies [ Skip ]
crbug.com/924400 [ android-nexus-6 android-webview ] rendering.mobile/canvas_animation_no_clear [ Skip ]
crbug.com/949366 [ android-nexus-5x android-webview ] rendering.mobile/google_news_mobile_2018 [ Skip ]
crbug.com/954948 [ android-webview ] rendering.mobile/cnn_mobile_pinch_2018 [ Skip ]
crbug.com/966637 [ android-pixel-2 android-webview ] rendering.mobile/google_news_mobile_2018 [ Skip ]
crbug.com/967809 [ android-webview ] rendering.mobile/microsoft_video_city [ Skip ]
# Benchmark: rasterize_and_record_micro.top_25
crbug.com/764543 [ All ] rasterize_and_record_micro.top_25/file://static_top_25/wikipedia.html [ Skip ]
crbug.com/815193 [ Android ] rasterize_and_record_micro.top_25/file://static_top_25/wikipedia.html [ Skip ]
crbug.com/873011 [ Android_Webview ] rasterize_and_record_micro.top_25/file://static_top_25/yahoonews.html [ Skip ]
crbug.com/865400 [ Pixel_2 ] rasterize_and_record_micro.top_25/file://static_top_25/yahoonews.html [ Skip ]
crbug.com/865400 [ Nexus_5 ] rasterize_and_record_micro.top_25/file://static_top_25/yahoonews.html [ Skip ]
crbug.com/865400 [ Nexus_5X ] rasterize_and_record_micro.top_25/file://static_top_25/yahoonews.html [ Skip ]
crbug.com/892223 [ Nexus_5 ] rasterize_and_record_micro.top_25/file://static_top_25/yahoogames.html [ Skip ]
crbug.com/910207 [ Nexus_5X ] rasterize_and_record_micro.top_25/file://static_top_25/yahoogames.html [ Skip ]
crbug.com/875878 [ Nexus6_Webview ] rasterize_and_record_micro.top_25/file://static_top_25/yahoogames.html [ Skip ]
crbug.com/764543 rasterize_and_record_micro.top_25/file://static_top_25/wikipedia.html [ Skip ]
crbug.com/815193 [ android ] rasterize_and_record_micro.top_25/file://static_top_25/wikipedia.html [ Skip ]
crbug.com/873011 [ android-webview ] rasterize_and_record_micro.top_25/file://static_top_25/yahoonews.html [ Skip ]
crbug.com/865400 [ android-pixel-2 ] rasterize_and_record_micro.top_25/file://static_top_25/yahoonews.html [ Skip ]
crbug.com/865400 [ android-nexus-5 ] rasterize_and_record_micro.top_25/file://static_top_25/yahoonews.html [ Skip ]
crbug.com/865400 [ android-nexus-5x ] rasterize_and_record_micro.top_25/file://static_top_25/yahoonews.html [ Skip ]
crbug.com/892223 [ android-nexus-5 ] rasterize_and_record_micro.top_25/file://static_top_25/yahoogames.html [ Skip ]
crbug.com/910207 [ android-nexus-5x ] rasterize_and_record_micro.top_25/file://static_top_25/yahoogames.html [ Skip ]
crbug.com/875878 [ android-nexus-6 android-webview ] rasterize_and_record_micro.top_25/file://static_top_25/yahoogames.html [ Skip ]
# Benchmark: startup.mobile
crbug.com/948789 [ Nexus_5 ] startup.mobile/maps_pwa:with_http_cache [ Skip ]
crbug.com/948789 [ Nexus_5X ] startup.mobile/maps_pwa:with_http_cache [ Skip ]
crbug.com/948789 [ android-nexus-5 ] startup.mobile/maps_pwa:with_http_cache [ Skip ]
crbug.com/948789 [ android-nexus-5x ] startup.mobile/maps_pwa:with_http_cache [ Skip ]
# Benchmark: system_health.common_desktop
crbug.com/984599 [ Linux ] system_health.common_desktop/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/984599 [ Win_10 ] system_health.common_desktop/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/773084 [ Mac ] system_health.common_desktop/browse:tools:maps [ Skip ]
crbug.com/903417 [ Mac ] system_health.common_desktop/long_running:tools:gmail-foreground [ Skip ]
crbug.com/903417 [ Win ] system_health.common_desktop/long_running:tools:gmail-foreground [ Skip ]
crbug.com/911214 [ Win ] system_health.common_desktop/multitab:misc:typical24 [ Skip ]
crbug.com/934270 [ Win ] system_health.common_desktop/multitab:misc:typical24:2018 [ Skip ]
crbug.com/931185 [ Win_7 ] system_health.common_desktop/browse:media:youtubetv:2019 [ Skip ]
crbug.com/958422 [ Win_7 ] system_health.common_desktop/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/984599 [ linux ] system_health.common_desktop/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/984599 [ win10 ] system_health.common_desktop/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/773084 [ mac ] system_health.common_desktop/browse:tools:maps [ Skip ]
crbug.com/903417 [ mac ] system_health.common_desktop/long_running:tools:gmail-foreground [ Skip ]
crbug.com/903417 [ win ] system_health.common_desktop/long_running:tools:gmail-foreground [ Skip ]
crbug.com/911214 [ win ] system_health.common_desktop/multitab:misc:typical24 [ Skip ]
crbug.com/934270 [ win ] system_health.common_desktop/multitab:misc:typical24:2018 [ Skip ]
crbug.com/931185 [ win7 ] system_health.common_desktop/browse:media:youtubetv:2019 [ Skip ]
crbug.com/958422 [ win7 ] system_health.common_desktop/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
# Benchmark: system_health.common_mobile
crbug.com/914390 [ Nexus_5 ] system_health.common_mobile/browse:chrome:newtab [ Skip ]
crbug.com/714650 [ Android ] system_health.common_mobile/browse:news:globo [ Skip ]
crbug.com/708300 [ Android ] system_health.common_mobile/browse:shopping:flipkart [ Skip ]
crbug.com/865400 [ Pixel_2 ] system_health.common_mobile/background:news:nytimes [ Skip ]
crbug.com/877648 [ Android_Go ] system_health.common_mobile/browse:news:toi [ Skip ]
crbug.com/929839 [ Android_Go ] system_health.common_mobile/browse:chrome:newtab [ Skip ]
crbug.com/877648 [ Android ] system_health.common_mobile/long_running:tools:gmail-background [ Skip ]
crbug.com/877648 [ Android ] system_health.common_mobile/long_running:tools:gmail-foreground [ Skip ]
crbug.com/896851 [ Android ] system_health.common_mobile/background:tools:gmail [ Skip ]
crbug.com/896871 [ Android ] system_health.common_mobile/load:tools:gmail [ Skip ]
crbug.com/923116 [ Android ] system_health.common_mobile/browse:shopping:avito [ Skip ]
crbug.com/923527 [ Android_Webview ] system_health.common_mobile/load:media:soundcloud:2018 [ Skip ]
crbug.com/954949 [ Nexus5X_Webview ] system_health.common_mobile/browse:news:washingtonpost [ Skip ]
crbug.com/961417 [ Android_Go ] system_health.common_mobile/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/979786 [ Nexus5X_Webview ] system_health.common_mobile/browse:news:cricbuzz [ Skip ]
crbug.com/914390 [ android-nexus-5 ] system_health.common_mobile/browse:chrome:newtab [ Skip ]
crbug.com/714650 [ android ] system_health.common_mobile/browse:news:globo [ Skip ]
crbug.com/708300 [ android ] system_health.common_mobile/browse:shopping:flipkart [ Skip ]
crbug.com/865400 [ android-pixel-2 ] system_health.common_mobile/background:news:nytimes [ Skip ]
crbug.com/877648 [ android-go ] system_health.common_mobile/browse:news:toi [ Skip ]
crbug.com/929839 [ android-go ] system_health.common_mobile/browse:chrome:newtab [ Skip ]
crbug.com/877648 [ android ] system_health.common_mobile/long_running:tools:gmail-background [ Skip ]
crbug.com/877648 [ android ] system_health.common_mobile/long_running:tools:gmail-foreground [ Skip ]
crbug.com/896851 [ android ] system_health.common_mobile/background:tools:gmail [ Skip ]
crbug.com/896871 [ android ] system_health.common_mobile/load:tools:gmail [ Skip ]
crbug.com/923116 [ android ] system_health.common_mobile/browse:shopping:avito [ Skip ]
crbug.com/923527 [ android-webview ] system_health.common_mobile/load:media:soundcloud:2018 [ Skip ]
crbug.com/954949 [ android-nexus-5x android-webview ] system_health.common_mobile/browse:news:washingtonpost [ Skip ]
crbug.com/961417 [ android-go ] system_health.common_mobile/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/979786 [ android-nexus-5x android-webview ] system_health.common_mobile/browse:news:cricbuzz [ Skip ]
# Benchmark: system_health.memory_desktop
crbug.com/984599 [ Linux ] system_health.memory_desktop/long_running:tools:gmail-foreground [ Skip ]
crbug.com/984599 [ Mac ] system_health.memory_desktop/long_running:tools:gmail-background [ Skip ]
crbug.com/984599 [ Mac ] system_health.memory_desktop/long_running:tools:gmail-foreground [ Skip ]
crbug.com/649392 [ All ] system_health.memory_desktop/play:media:google_play_music [ Skip ]
crbug.com/742475 [ Mac ] system_health.memory_desktop/multitab:misc:typical24 [ Skip ]
crbug.com/946495 [ Mac ] system_health.memory_desktop/multitab:misc:typical24:2018 [ Skip ]
crbug.com/838504 [ Linux ] system_health.memory_desktop/multitab:misc:typical24 [ Skip ]
crbug.com/773084 [ Mac ] system_health.memory_desktop/browse:tools:maps [ Skip ]
crbug.com/799106 [ Win ] system_health.memory_desktop/browse:media:flickr_infinite_scroll [ Skip ]
crbug.com/836407 [ Linux ] system_health.memory_desktop/browse:tools:maps [ Skip ]
crbug.com/934885 [ Linux ] system_health.memory_desktop/load_accessibility:media:wikipedia:2018 [ Skip ]
crbug.com/869118 [ Linux ] system_health.memory_desktop/long_running:tools:gmail-background [ Skip ]
crbug.com/836447 [ ChromeOS ] system_health.memory_desktop/multitab:misc:typical24 [ Skip ]
crbug.com/899887 [ Linux ] system_health.memory_desktop/browse:social:facebook_infinite_scroll:2018 [ Skip ]
crbug.com/924330 [ Linux ] system_health.memory_desktop/browse:media:pinterest:2018 [ Skip ]
crbug.com/874803 [ Win_10 ] system_health.memory_desktop/multitab:misc:typical24 [ Skip ]
crbug.com/944978 [ Win_7 ] system_health.memory_desktop/multitab:misc:typical24 [ Skip ]
crbug.com/934270 [ Win ] system_health.memory_desktop/multitab:misc:typical24:2018 [ Skip ]
crbug.com/942952 [ ChromeOS ] system_health.memory_desktop/browse:news:hackernews:2018 [ Skip ]
crbug.com/959418 [ ChromeOS ] system_health.memory_desktop/long_running:tools:gmail-background [ Skip ]
crbug.com/959418 [ ChromeOS ] system_health.memory_desktop/load:games:spychase:2018 [ Skip ]
crbug.com/959418 [ ChromeOS ] system_health.memory_desktop/long_running:tools:gmail-foreground [ Skip ]
crbug.com/984599 [ linux ] system_health.memory_desktop/long_running:tools:gmail-foreground [ Skip ]
crbug.com/984599 [ mac ] system_health.memory_desktop/long_running:tools:gmail-background [ Skip ]
crbug.com/984599 [ mac ] system_health.memory_desktop/long_running:tools:gmail-foreground [ Skip ]
crbug.com/649392 system_health.memory_desktop/play:media:google_play_music [ Skip ]
crbug.com/742475 [ mac ] system_health.memory_desktop/multitab:misc:typical24 [ Skip ]
crbug.com/946495 [ mac ] system_health.memory_desktop/multitab:misc:typical24:2018 [ Skip ]
crbug.com/838504 [ linux ] system_health.memory_desktop/multitab:misc:typical24 [ Skip ]
crbug.com/773084 [ mac ] system_health.memory_desktop/browse:tools:maps [ Skip ]
crbug.com/799106 [ win ] system_health.memory_desktop/browse:media:flickr_infinite_scroll [ Skip ]
crbug.com/836407 [ linux ] system_health.memory_desktop/browse:tools:maps [ Skip ]
crbug.com/934885 [ linux ] system_health.memory_desktop/load_accessibility:media:wikipedia:2018 [ Skip ]
crbug.com/869118 [ linux ] system_health.memory_desktop/long_running:tools:gmail-background [ Skip ]
crbug.com/836447 [ chromeos ] system_health.memory_desktop/multitab:misc:typical24 [ Skip ]
crbug.com/899887 [ linux ] system_health.memory_desktop/browse:social:facebook_infinite_scroll:2018 [ Skip ]
crbug.com/924330 [ linux ] system_health.memory_desktop/browse:media:pinterest:2018 [ Skip ]
crbug.com/874803 [ win10 ] system_health.memory_desktop/multitab:misc:typical24 [ Skip ]
crbug.com/944978 [ win7 ] system_health.memory_desktop/multitab:misc:typical24 [ Skip ]
crbug.com/934270 [ win ] system_health.memory_desktop/multitab:misc:typical24:2018 [ Skip ]
crbug.com/942952 [ chromeos ] system_health.memory_desktop/browse:news:hackernews:2018 [ Skip ]
crbug.com/959418 [ chromeos ] system_health.memory_desktop/long_running:tools:gmail-background [ Skip ]
crbug.com/959418 [ chromeos ] system_health.memory_desktop/load:games:spychase:2018 [ Skip ]
crbug.com/959418 [ chromeos ] system_health.memory_desktop/long_running:tools:gmail-foreground [ Skip ]
# Benchmark: system_health.memory_mobile
crbug.com/914390 [ Nexus_5 ] system_health.memory_mobile/browse:chrome:newtab [ Skip ]
crbug.com/714650 [ Android ] system_health.memory_mobile/browse:news:globo [ Skip ]
crbug.com/819552 [ Nexus_5X ] system_health.memory_mobile/browse:chrome:omnibox [ Skip ]
crbug.com/867853 [ Nexus_5X ] system_health.memory_mobile/browse:chrome:newtab [ Skip ]
crbug.com/657433 [ Android ] system_health.memory_mobile/load:tools:gmail [ Skip ]
crbug.com/708300 [ Android ] system_health.memory_mobile/browse:shopping:flipkart [ Skip ]
crbug.com/784400 [ Nexus_5 ] system_health.memory_mobile/background:tools:gmail [ Skip ]
crbug.com/910207 [ Nexus_5X ] system_health.memory_mobile/background:tools:gmail [ Skip ]
crbug.com/780779 [ Nexus_5 ] system_health.memory_mobile/browse:social:facebook [ Skip ]
crbug.com/910207 [ Nexus_5X ] system_health.memory_mobile/browse:social:facebook [ Skip ]
crbug.com/738854 [ Nexus_5X ] system_health.memory_mobile/load:tools:drive [ Skip ]
crbug.com/738854 [ Android_Webview ] system_health.memory_mobile/load:tools:drive [ Skip ]
crbug.com/834905 [ Nexus_5 ] system_health.memory_mobile/browse:social:pinterest_infinite_scroll [ Skip ]
crbug.com/910207 [ Nexus_5X ] system_health.memory_mobile/browse:social:pinterest_infinite_scroll [ Skip ]
crbug.com/843547 [ Android_Go ] system_health.memory_mobile/background:news:nytimes [ Skip ]
crbug.com/852888 [ Nexus_5X ] system_health.memory_mobile/background:news:nytimes [ Skip ]
crbug.com/871708 [ Android_Webview ] system_health.memory_mobile/browse:social:facebook_infinite_scroll [ Skip ]
crbug.com/865400 [ Pixel_2 ] system_health.memory_mobile/background:news:nytimes [ Skip ]
crbug.com/877648 [ Android ] system_health.memory_mobile/long_running:tools:gmail-background [ Skip ]
crbug.com/877648 [ Android ] system_health.memory_mobile/long_running:tools:gmail-foreground [ Skip ]
crbug.com/883320 [ Android_Go ] system_health.memory_mobile/browse:news:cnn:2018 [ Skip ]
crbug.com/880652 [ Nexus_5X ] system_health.memory_mobile/browse:shopping:avito [ Skip ]
crbug.com/883652 [ Nexus_5 ] system_health.memory_mobile/browse:shopping:avito [ Skip ]
crbug.com/923116 [ Android ] system_health.memory_mobile/browse:shopping:avito [ Skip ]
crbug.com/893873 [ Nexus_5X ] system_health.memory_mobile/load:news:washingtonpost [ Skip ]
crbug.com/896851 [ Android ] system_health.memory_mobile/background:tools:gmail [ Skip ]
crbug.com/892704 [ Android_Webview ] system_health.memory_mobile/browse:tech:discourse_infinite_scroll:2018 [ Skip ]
crbug.com/923527 [ Android_Webview ] system_health.memory_mobile/load:media:soundcloud:2018 [ Skip ]
crbug.com/947267 [ Nexus_5X ] system_health.memory_mobile/background:media:imgur [ Skip ]
crbug.com/954949 [ Nexus5X_Webview ] system_health.memory_mobile/browse:news:washingtonpost [ Skip ]
crbug.com/961417 [ Android_Go ] system_health.memory_mobile/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/964960 [ Nexus_5X ] system_health.memory_mobile/* [ Skip ]
crbug.com/914390 [ android-nexus-5 ] system_health.memory_mobile/browse:chrome:newtab [ Skip ]
crbug.com/714650 [ android ] system_health.memory_mobile/browse:news:globo [ Skip ]
crbug.com/819552 [ android-nexus-5x ] system_health.memory_mobile/browse:chrome:omnibox [ Skip ]
crbug.com/867853 [ android-nexus-5x ] system_health.memory_mobile/browse:chrome:newtab [ Skip ]
crbug.com/657433 [ android ] system_health.memory_mobile/load:tools:gmail [ Skip ]
crbug.com/708300 [ android ] system_health.memory_mobile/browse:shopping:flipkart [ Skip ]
crbug.com/784400 [ android-nexus-5 ] system_health.memory_mobile/background:tools:gmail [ Skip ]
crbug.com/910207 [ android-nexus-5x ] system_health.memory_mobile/background:tools:gmail [ Skip ]
crbug.com/780779 [ android-nexus-5 ] system_health.memory_mobile/browse:social:facebook [ Skip ]
crbug.com/910207 [ android-nexus-5x ] system_health.memory_mobile/browse:social:facebook [ Skip ]
crbug.com/738854 [ android-nexus-5x ] system_health.memory_mobile/load:tools:drive [ Skip ]
crbug.com/738854 [ android-webview ] system_health.memory_mobile/load:tools:drive [ Skip ]
crbug.com/834905 [ android-nexus-5 ] system_health.memory_mobile/browse:social:pinterest_infinite_scroll [ Skip ]
crbug.com/910207 [ android-nexus-5x ] system_health.memory_mobile/browse:social:pinterest_infinite_scroll [ Skip ]
crbug.com/843547 [ android-go ] system_health.memory_mobile/background:news:nytimes [ Skip ]
crbug.com/852888 [ android-nexus-5x ] system_health.memory_mobile/background:news:nytimes [ Skip ]
crbug.com/871708 [ android-webview ] system_health.memory_mobile/browse:social:facebook_infinite_scroll [ Skip ]
crbug.com/865400 [ android-pixel-2 ] system_health.memory_mobile/background:news:nytimes [ Skip ]
crbug.com/877648 [ android ] system_health.memory_mobile/long_running:tools:gmail-background [ Skip ]
crbug.com/877648 [ android ] system_health.memory_mobile/long_running:tools:gmail-foreground [ Skip ]
crbug.com/883320 [ android-go ] system_health.memory_mobile/browse:news:cnn:2018 [ Skip ]
crbug.com/880652 [ android-nexus-5x ] system_health.memory_mobile/browse:shopping:avito [ Skip ]
crbug.com/883652 [ android-nexus-5 ] system_health.memory_mobile/browse:shopping:avito [ Skip ]
crbug.com/923116 [ android ] system_health.memory_mobile/browse:shopping:avito [ Skip ]
crbug.com/893873 [ android-nexus-5x ] system_health.memory_mobile/load:news:washingtonpost [ Skip ]
crbug.com/896851 [ android ] system_health.memory_mobile/background:tools:gmail [ Skip ]
crbug.com/892704 [ android-webview ] system_health.memory_mobile/browse:tech:discourse_infinite_scroll:2018 [ Skip ]
crbug.com/923527 [ android-webview ] system_health.memory_mobile/load:media:soundcloud:2018 [ Skip ]
crbug.com/947267 [ android-nexus-5x ] system_health.memory_mobile/background:media:imgur [ Skip ]
crbug.com/954949 [ android-nexus-5x android-webview ] system_health.memory_mobile/browse:news:washingtonpost [ Skip ]
crbug.com/961417 [ android-go ] system_health.memory_mobile/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/964960 [ android-nexus-5x ] system_health.memory_mobile/* [ Skip ]
# Benchmark: tab_switching.typical_25
crbug.com/747026 [ Mac ] tab_switching.typical_25/multitab:misc:typical24 [ Skip ]
crbug.com/883731 [ Win ] tab_switching.typical_25/multitab:misc:typical24 [ Skip ]
crbug.com/747026 [ mac ] tab_switching.typical_25/multitab:misc:typical24 [ Skip ]
crbug.com/883731 [ win ] tab_switching.typical_25/multitab:misc:typical24 [ Skip ]
# Benchmark: tracing.tracing_with_background_memory_infra
crbug.com/914092 [ Win ] tracing.tracing_with_background_memory_infra/http://www.bing.com/ [ Skip ]
crbug.com/914092 [ Win ] tracing.tracing_with_background_memory_infra/http://www.amazon.com [ Skip ]
crbug.com/914092 [ win ] tracing.tracing_with_background_memory_infra/http://www.bing.com/ [ Skip ]
crbug.com/914092 [ win ] tracing.tracing_with_background_memory_infra/http://www.amazon.com [ Skip ]
# Benchmark: v8.browsing_desktop
crbug.com/773084 [ Mac ] v8.browsing_desktop/browse:tools:maps [ Skip ]
crbug.com/788796 [ Linux ] v8.browsing_desktop/browse:media:imgur [ Skip ]
crbug.com/953371 [ Desktop ] v8.browsing_desktop/browse:social:twitter_infinite_scroll:2018 [ Skip ]
crbug.com/875159 [ Win_10 ] v8.browsing_desktop/browse:media:imgur [ Skip ]
crbug.com/953371 [ Win ] v8.browsing_desktop/browse:social:twitter_infinite_scroll:2018 [ Skip ]
crbug.com/954959 [ Linux ] v8.browsing_desktop/browse:media:pinterest:2018 [ Skip ]
crbug.com/954959 [ Linux ] v8.browsing_desktop/browse:tools:maps [ Skip ]
crbug.com/958422 [ All ] v8.browsing_desktop/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/958507 [ Desktop ] v8.browsing_desktop/browse:media:imgur [ Skip ]
crbug.com/773084 [ mac ] v8.browsing_desktop/browse:tools:maps [ Skip ]
crbug.com/788796 [ linux ] v8.browsing_desktop/browse:media:imgur [ Skip ]
crbug.com/953371 [ desktop ] v8.browsing_desktop/browse:social:twitter_infinite_scroll:2018 [ Skip ]
crbug.com/875159 [ win10 ] v8.browsing_desktop/browse:media:imgur [ Skip ]
crbug.com/953371 [ win ] v8.browsing_desktop/browse:social:twitter_infinite_scroll:2018 [ Skip ]
crbug.com/954959 [ linux ] v8.browsing_desktop/browse:media:pinterest:2018 [ Skip ]
crbug.com/954959 [ linux ] v8.browsing_desktop/browse:tools:maps [ Skip ]
crbug.com/958422 v8.browsing_desktop/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/958507 [ desktop ] v8.browsing_desktop/browse:media:imgur [ Skip ]
# Benchmark v8.browsing_desktop-future
crbug.com/788796 [ Linux ] v8.browsing_desktop-future/browse:media:imgur [ Skip ]
crbug.com/953371 [ Desktop ] v8.browsing_desktop-future/browse:social:twitter_infinite_scroll:2018 [ Skip ]
crbug.com/773084 [ Mac ] v8.browsing_desktop-future/browse:tools:maps [ Skip ]
crbug.com/906654 [ All ] v8.browsing_desktop-future/browse:search:google [ Skip ]
crbug.com/953371 [ Win ] v8.browsing_desktop-future/browse:social:twitter_infinite_scroll:2018 [ Skip ]
crbug.com/958422 [ All ] v8.browsing_desktop-future/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/958507 [ Desktop ] v8.browsing_desktop-future/browse:media:imgur [ Skip ]
crbug.com/788796 [ linux ] v8.browsing_desktop-future/browse:media:imgur [ Skip ]
crbug.com/953371 [ desktop ] v8.browsing_desktop-future/browse:social:twitter_infinite_scroll:2018 [ Skip ]
crbug.com/773084 [ mac ] v8.browsing_desktop-future/browse:tools:maps [ Skip ]
crbug.com/906654 v8.browsing_desktop-future/browse:search:google [ Skip ]
crbug.com/953371 [ win ] v8.browsing_desktop-future/browse:social:twitter_infinite_scroll:2018 [ Skip ]
crbug.com/958422 v8.browsing_desktop-future/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/958507 [ desktop ] v8.browsing_desktop-future/browse:media:imgur [ Skip ]
# Benchmark: v8.browsing_mobile
crbug.com/958034 [ Android_Go_Webview ] v8.browsing_mobile/* [ Skip ]
crbug.com/714650 [ Android ] v8.browsing_mobile/browse:news:globo [ Skip ]
crbug.com/767970 [ Android ] v8.browsing_mobile/browse:shopping:flipkart [ Skip ]
crbug.com/708300 [ Android ] v8.browsing_mobile/browse:shopping:flipkart [ Skip ]
crbug.com/815175 [ Nexus_5 ] v8.browsing_mobile/browse:chrome:newtab [ Skip ]
crbug.com/910207 [ Nexus_5X ] v8.browsing_mobile/browse:chrome:newtab [ Skip ]
crbug.com/853212 [ Android_Webview ] v8.browsing_mobile/browse:media:youtube [ Skip ]
crbug.com/877648 [ Android_Go ] v8.browsing_mobile/browse:news:toi [ Skip ]
crbug.com/954260 [ Android ] v8.browsing_mobile/browse:news:toi [ Skip ]
crbug.com/950757 [ Android_Go ] v8.browsing_mobile/browse:news:cnn:2018 [ Skip ]
crbug.com/901967 [ Nexus6_Webview ] v8.browsing_mobile/browse:news:toi [ Skip ]
crbug.com/923116 [ Android ] v8.browsing_mobile/browse:shopping:avito [ Skip ]
crbug.com/929839 [ Android_Go ] v8.browsing_mobile/browse:chrome:newtab [ Skip ]
crbug.com/954949 [ Nexus5X_Webview ] v8.browsing_mobile/browse:news:washingtonpost [ Skip ]
crbug.com/961417 [ Android_Go ] v8.browsing_mobile/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/979786 [ Nexus5X_Webview ] v8.browsing_mobile/browse:media:flickr_infinite_scroll [ Skip ]
crbug.com/958034 [ android-go android-webview ] v8.browsing_mobile/* [ Skip ]
crbug.com/714650 [ android ] v8.browsing_mobile/browse:news:globo [ Skip ]
crbug.com/767970 [ android ] v8.browsing_mobile/browse:shopping:flipkart [ Skip ]
crbug.com/708300 [ android ] v8.browsing_mobile/browse:shopping:flipkart [ Skip ]
crbug.com/815175 [ android-nexus-5 ] v8.browsing_mobile/browse:chrome:newtab [ Skip ]
crbug.com/910207 [ android-nexus-5x ] v8.browsing_mobile/browse:chrome:newtab [ Skip ]
crbug.com/853212 [ android-webview ] v8.browsing_mobile/browse:media:youtube [ Skip ]
crbug.com/877648 [ android-go ] v8.browsing_mobile/browse:news:toi [ Skip ]
crbug.com/954260 [ android ] v8.browsing_mobile/browse:news:toi [ Skip ]
crbug.com/950757 [ android-go ] v8.browsing_mobile/browse:news:cnn:2018 [ Skip ]
crbug.com/901967 [ android-nexus-6 android-webview ] v8.browsing_mobile/browse:news:toi [ Skip ]
crbug.com/923116 [ android ] v8.browsing_mobile/browse:shopping:avito [ Skip ]
crbug.com/929839 [ android-go ] v8.browsing_mobile/browse:chrome:newtab [ Skip ]
crbug.com/954949 [ android-nexus-5x android-webview ] v8.browsing_mobile/browse:news:washingtonpost [ Skip ]
crbug.com/961417 [ android-go ] v8.browsing_mobile/browse:social:tumblr_infinite_scroll:2018 [ Skip ]
crbug.com/979786 [ android-nexus-5x android-webview ] v8.browsing_mobile/browse:media:flickr_infinite_scroll [ Skip ]
# Benchmark: v8.browsing_mobile-future
crbug.com/714650 [ Android ] v8.browsing_mobile-future/browse:news:globo [ Skip ]
crbug.com/803465 [ Nexus_5 ] v8.browsing_mobile-future/browse:chrome:newtab [ Skip ]
crbug.com/910207 [ Nexus_5X ] v8.browsing_mobile-future/browse:chrome:newtab [ Skip ]
crbug.com/799080 [ Nexus_5X Android_Webview ] v8.browsing_mobile-future/browse:social:facebook [ Skip ]
crbug.com/799080 [ Nexus_5X Android_Webview ] v8.browsing_mobile-future/browse:social:facebook [ Skip ]
crbug.com/901534 [ Nexus6_Webview ] v8.browsing_mobile-future/browse:news:toi [ Skip ]
crbug.com/954260 [ Android ] v8.browsing_mobile-future/browse:news:toi [ Skip ]
crbug.com/865400 [ Pixel_2 ] v8.browsing_mobile-future/browse:shopping:avito [ Skip ]
crbug.com/923116 [ Android ] v8.browsing_mobile-future/browse:shopping:avito [ Skip ]
crbug.com/954949 [ Nexus5X_Webview ] v8.browsing_mobile-future/browse:news:washingtonpost [ Skip ]
crbug.com/958336 [ Android ] v8.browsing_mobile-future/browse:shopping:flipkart [ Skip ]
crbug.com/714650 [ android ] v8.browsing_mobile-future/browse:news:globo [ Skip ]
crbug.com/803465 [ android-nexus-5 ] v8.browsing_mobile-future/browse:chrome:newtab [ Skip ]
crbug.com/910207 [ android-nexus-5x ] v8.browsing_mobile-future/browse:chrome:newtab [ Skip ]
crbug.com/799080 [ android-nexus-5x android-webview ] v8.browsing_mobile-future/browse:social:facebook [ Skip ]
crbug.com/799080 [ android-nexus-5x android-webview ] v8.browsing_mobile-future/browse:social:facebook [ Skip ]
crbug.com/901534 [ android-nexus-6 android-webview ] v8.browsing_mobile-future/browse:news:toi [ Skip ]
crbug.com/954260 [ android ] v8.browsing_mobile-future/browse:news:toi [ Skip ]
crbug.com/865400 [ android-pixel-2 ] v8.browsing_mobile-future/browse:shopping:avito [ Skip ]
crbug.com/923116 [ android ] v8.browsing_mobile-future/browse:shopping:avito [ Skip ]
crbug.com/954949 [ android-nexus-5x android-webview ] v8.browsing_mobile-future/browse:news:washingtonpost [ Skip ]
crbug.com/958336 [ android ] v8.browsing_mobile-future/browse:shopping:flipkart [ Skip ]
# Benchmark: v8.runtime_stats.top_25
crbug.com/954229 [ Mac ] v8.runtime_stats.top_25/* [ Skip ]
crbug.com/954229 [ mac ] v8.runtime_stats.top_25/* [ Skip ]
##### Perf FYI benchmarks go after here #####
# Benchmark: loading.desktop_layout_ng
crbug.com/879833 [ Linux ] loading.desktop_layout_ng/Walgreens_cold [ Skip ]
crbug.com/879833 [ Linux ] loading.desktop_layout_ng/Walgreens_warm [ Skip ]
crbug.com/879833 [ linux ] loading.desktop_layout_ng/Walgreens_cold [ Skip ]
crbug.com/879833 [ linux ] loading.desktop_layout_ng/Walgreens_warm [ Skip ]
......@@ -7,14 +7,13 @@ import os
import sys
from telemetry import story
from telemetry.story import expectations
from py_utils import discover
# Import all submodules' PageSet classes.
start_dir = os.path.dirname(os.path.abspath(__file__))
top_level_dir = os.path.dirname(start_dir)
base_classes = [story.StorySet, expectations.StoryExpectations]
base_classes = [story.StorySet]
for base_class in base_classes:
for cls in discover.DiscoverClasses(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment