Enable VK_Groupshared test

This commit is contained in:
Jake Turner
2025-09-27 08:40:54 +01:00
parent 11a4104bde
commit 9e63b3fb8c
3 changed files with 12 additions and 6 deletions
-6
View File
@@ -6,12 +6,6 @@ class Groupshared(rdtest.TestCase):
internal = True
demos_test_name = None
def check_support(self, **kwargs):
# Only allow this if explicitly run
if kwargs['test_include'] == self.demos_test_name:
return True, ''
return False, 'Disabled test'
def check_compute_thread_result(self, test, action, x, y, z, expected):
try:
workgroup = (0, 0, 0)
@@ -3,3 +3,9 @@ import rdtest
class D3D11_Groupshared(rdtest.Groupshared):
internal = False
demos_test_name = 'D3D11_Groupshared'
def check_support(self, **kwargs):
# Only allow this if explicitly run
if kwargs['test_include'] == self.demos_test_name:
return True, ''
return False, 'Disabled test'
@@ -4,6 +4,12 @@ class D3D12_Groupshared(rdtest.Groupshared):
internal = False
demos_test_name = 'D3D12_Groupshared'
def check_support(self, **kwargs):
# Only allow this if explicitly run
if kwargs['test_include'] == self.demos_test_name:
return True, ''
return False, 'Disabled test'
def check_capture(self):
overallFailed = False
action = self.find_action("SM5")