aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorGravatar Ben Wagner <benjaminwagner@google.com>2017-12-04 12:28:37 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-12-04 18:39:59 +0000
commit7d0cd9c3c6262db1a21d22b6ed82241f2463b5ec (patch)
tree1181c1a303b697c5ff417136115eadc0a676a4f3 /infra
parent7ffbcf909d365eb22c5e22b776aeac7b7472fbf3 (diff)
Fix recipe comments for ASAN.
No-Try: true Change-Id: Ifd97ba438fd30d2d9197857c86bfb010a97827a3 Reviewed-on: https://skia-review.googlesource.com/79702 Reviewed-by: Ben Wagner <benjaminwagner@google.com> Commit-Queue: Ben Wagner <benjaminwagner@google.com>
Diffstat (limited to 'infra')
-rw-r--r--infra/bots/recipes/perf.py2
-rw-r--r--infra/bots/recipes/test.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/infra/bots/recipes/perf.py b/infra/bots/recipes/perf.py
index 38d5a574d9..e271cf492a 100644
--- a/infra/bots/recipes/perf.py
+++ b/infra/bots/recipes/perf.py
@@ -194,7 +194,7 @@ def nanobench_flags(api, bot):
if 'Vulkan' in bot and 'NexusPlayer' in bot:
match.append('~blendmode_') # skia:6691
if 'ASAN' in bot and 'CPU' in bot:
- # skia:4632
+ # floor2int_undef benches undefined behavior, so ASAN correctly complains.
match.append('~^floor2int_undef$')
# We do not need or want to benchmark the decodes of incomplete images.
diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py
index a2bb1cbb67..dae5ed5297 100644
--- a/infra/bots/recipes/test.py
+++ b/infra/bots/recipes/test.py
@@ -559,7 +559,7 @@ def dm_flags(api, bot):
args.extend(['--gpuThreads', '0'])
if 'ASAN' in bot and 'CPU' in bot:
- # skia:4632
+ # skia:7052
for config in ['565', '8888', 'f16', 'srgb']:
blacklist([config, 'gm', '_', 'clippedcubic2'])
match.append('~^PathOpsCubicIntersection$')