From 2005d77c01a04ccc02173db812d1b1bbc7c1ce65 Mon Sep 17 00:00:00 2001 From: Leon Scroggins III Date: Mon, 1 May 2017 13:09:42 -0400 Subject: Blacklist SkImage_makeTextureImage on NVIDIA Win10 Vulkan Bug: skia:6554 Change-Id: I7c1086ce6afff84c1b1463ec58c2c6a9949aaa2e Reviewed-on: https://skia-review.googlesource.com/14907 Reviewed-by: Ben Wagner Commit-Queue: Leon Scroggins --- .../Test-Win10-MSVC-ShuttleA-GPU-GTX660-x86_64-Debug-Vulkan.json | 6 +++++- .../Test-Win10-MSVC-ZBOX-GPU-GTX1070-x86_64-Debug-Vulkan.json | 6 +++++- infra/bots/recipes/test.py | 3 +++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/infra/bots/recipes/test.expected/Test-Win10-MSVC-ShuttleA-GPU-GTX660-x86_64-Debug-Vulkan.json b/infra/bots/recipes/test.expected/Test-Win10-MSVC-ShuttleA-GPU-GTX660-x86_64-Debug-Vulkan.json index 8d0014ef37..04ca84c21a 100644 --- a/infra/bots/recipes/test.expected/Test-Win10-MSVC-ShuttleA-GPU-GTX660-x86_64-Debug-Vulkan.json +++ b/infra/bots/recipes/test.expected/Test-Win10-MSVC-ShuttleA-GPU-GTX660-x86_64-Debug-Vulkan.json @@ -397,7 +397,11 @@ "_", "image", "_", - ".SRW" + ".SRW", + "_", + "test", + "_", + "SkImage_makeTextureImage" ], "env": { "BUILDTYPE": "Debug_x64", diff --git a/infra/bots/recipes/test.expected/Test-Win10-MSVC-ZBOX-GPU-GTX1070-x86_64-Debug-Vulkan.json b/infra/bots/recipes/test.expected/Test-Win10-MSVC-ZBOX-GPU-GTX1070-x86_64-Debug-Vulkan.json index 1be8181054..3a147913ee 100644 --- a/infra/bots/recipes/test.expected/Test-Win10-MSVC-ZBOX-GPU-GTX1070-x86_64-Debug-Vulkan.json +++ b/infra/bots/recipes/test.expected/Test-Win10-MSVC-ZBOX-GPU-GTX1070-x86_64-Debug-Vulkan.json @@ -397,7 +397,11 @@ "_", "image", "_", - ".SRW" + ".SRW", + "_", + "test", + "_", + "SkImage_makeTextureImage" ], "env": { "BUILDTYPE": "Debug_x64", diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py index 4ff50c0fad..954f406f5e 100644 --- a/infra/bots/recipes/test.py +++ b/infra/bots/recipes/test.py @@ -510,6 +510,9 @@ def dm_flags(bot): match.append('~PathOpsSimplify') # skia:6479 blacklist(['_', 'gm', '_', 'fast_slow_blurimagefilter']) # skia:6480 + if ('Win10' in bot and 'Vulkan' in bot + and ('GTX1070' in bot or 'GTX660' in bot)): + blacklist('_ test _ SkImage_makeTextureImage') # skia:6554 if blacklisted: args.append('--blacklist') -- cgit v1.2.3