Commit 0af976c4 authored by primiano's avatar primiano Committed by Commit bot

Disable crashing blink_perf.parser perf test on Win.

This test has been crashing reliably on the some GPU Bots
See the attached BUG for more details.

This also reverts crrev.com/1145583002 which disabled the wrong
test

(Adding NOTRY as everything is currently red on the perf waterfall)

BUG=488493,489294
NOTRY=true
CQ_EXTRA_TRYBOTS=tryserver.chromium.perf:linux_perf_bisect;tryserver.chromium.perf:mac_perf_bisect;tryserver.chromium.perf:win_perf_bisect;tryserver.chromium.perf:android_nexus5_perf_bisect

Review URL: https://codereview.chromium.org/1136753005

Cr-Commit-Position: refs/heads/master@{#330499}
parent 2ca38f97
...@@ -167,8 +167,7 @@ class BlinkPerfCSS(benchmark.Benchmark): ...@@ -167,8 +167,7 @@ class BlinkPerfCSS(benchmark.Benchmark):
return CreatePageSetFromPath(path, SKIPPED_FILE) return CreatePageSetFromPath(path, SKIPPED_FILE)
@benchmark.Disabled('win', # http://crbug.com/488493 @benchmark.Disabled('linux') # http://crbug.com/488059
'linux') # http://crbug.com/488059
class BlinkPerfCanvas(benchmark.Benchmark): class BlinkPerfCanvas(benchmark.Benchmark):
tag = 'canvas' tag = 'canvas'
test = _BlinkPerfMeasurement test = _BlinkPerfMeasurement
...@@ -246,6 +245,7 @@ class BlinkPerfMutation(benchmark.Benchmark): ...@@ -246,6 +245,7 @@ class BlinkPerfMutation(benchmark.Benchmark):
return CreatePageSetFromPath(path, SKIPPED_FILE) return CreatePageSetFromPath(path, SKIPPED_FILE)
@benchmark.Disabled('win') # crbug.com/488493
class BlinkPerfParser(benchmark.Benchmark): class BlinkPerfParser(benchmark.Benchmark):
tag = 'parser' tag = 'parser'
test = _BlinkPerfMeasurement test = _BlinkPerfMeasurement
......
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