Commit af945076 authored by Saman Sami's avatar Saman Sami Committed by Commit Bot

Fix Vulkan support reported incorrectly on Windows AMD GPU FYI bots

Bug: 1035482
Change-Id: I68c34d0a3c2b2bb5867bcf1142d87a7a67434217
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1974692
Commit-Queue: Saman Sami <samans@chromium.org>
Reviewed-by: default avatarKenneth Russell <kbr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#726175}
parent 91b72226
......@@ -301,7 +301,7 @@ class GpuIntegrationTest(
This configuration is collected on Windows platform only.
The rules to determine bot config are:
1) DX12: Win7 doesn't support DX12. Only Win10 supports DX12
2) Vulkan: All bots support Vulkan except for Win FYI AMD bots
2) Vulkan: All bots support Vulkan.
"""
if self.browser is None:
raise Exception("Browser doesn't exist")
......@@ -312,7 +312,6 @@ class GpuIntegrationTest(
if gpu is None:
raise Exception("System Info doesn't have a gpu")
gpu_vendor_id = gpu.vendor_id
gpu_device_id = gpu.device_id
assert gpu_vendor_id in _SUPPORTED_WIN_GPU_VENDORS
os_version = self.browser.platform.GetOSVersionName()
......@@ -329,11 +328,6 @@ class GpuIntegrationTest(
if os_version == 'win7':
config['supports_dx12'] = False
# "Win7 FYI Release (AMD)" and "Win7 FYI Debug (AMD)" bots
if (os_version == 'win7' and gpu_vendor_id == 0x1002
and gpu_device_id == 0x6613):
config['supports_vulkan'] = False
return config
@classmethod
......
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