Skip to content

Commit

Permalink
Disable pages on v8.runtimestats.browsing_mobile
Browse files Browse the repository at this point in the history
TBR=rnephew@chromium.org

Bug: 767970
Change-Id: Ifffdc6628e0825d3c96efd8c8d47d28cae762070
Reviewed-on: https://chromium-review.googlesource.com/679263
Reviewed-by: Simon Hatch <simonhatch@chromium.org>
Reviewed-by: rnephew <rnephew@chromium.org>
Commit-Queue: Simon Hatch <simonhatch@chromium.org>
Cr-Commit-Position: refs/heads/master@{#503837}
  • Loading branch information
simonhatch authored and Commit Bot committed Sep 22, 2017
1 parent 046a085 commit f753568
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tools/perf/benchmarks/v8_browsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,23 @@ class V8RuntimeStatsMobileBrowsingBenchmark(
PLATFORM = 'mobile'
SUPPORTED_PLATFORMS = [story.expectations.ALL_MOBILE]

def GetExpectations(self):
class StoryExpectations(story.expectations.StoryExpectations):
def SetExpectations(self):
self.DisableStory(
'browse:shopping:avito',
[story.expectations.ANDROID_ONE],
'crbug.com/767970')
self.DisableStory(
'browse:news:cnn',
[story.expectations.ANDROID_ONE],
'crbug.com/767970')
self.DisableStory(
'browse:tech:discourse_infinite_scroll',
[story.expectations.ANDROID_ONE],
'crbug.com/767970')
return StoryExpectations()

@classmethod
def Name(cls):
return 'v8.runtimestats.browsing_mobile'

0 comments on commit f753568

Please sign in to comment.