aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes
diff options
context:
space:
mode:
authorGravatar Leon Scroggins III <scroggo@google.com>2017-05-01 13:09:42 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-05-01 17:58:42 +0000
commit2005d77c01a04ccc02173db812d1b1bbc7c1ce65 (patch)
tree94428061ada1dfff0609d8ec5cc21ba5989f0ae6 /infra/bots/recipes
parent6125efd1fca6c42f50c7a61f4554f422e2f53f87 (diff)
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 <benjaminwagner@google.com> Commit-Queue: Leon Scroggins <scroggo@google.com>
Diffstat (limited to 'infra/bots/recipes')
-rw-r--r--infra/bots/recipes/test.expected/Test-Win10-MSVC-ShuttleA-GPU-GTX660-x86_64-Debug-Vulkan.json6
-rw-r--r--infra/bots/recipes/test.expected/Test-Win10-MSVC-ZBOX-GPU-GTX1070-x86_64-Debug-Vulkan.json6
-rw-r--r--infra/bots/recipes/test.py3
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')