Enable D3D11, D3D12 groupshared, subgroup, workgroup tests

D3D11_Groupshared, D3D12_Groupshared
D3D12_Subgroup_Zoo
D3D11_Workgroup_Zoo D3D12_Workgroup_Zoo
This commit is contained in:
Jake Turner
2025-10-02 05:53:42 +01:00
parent bc403a291d
commit a4d407ec3a
5 changed files with 2 additions and 34 deletions
+1 -7
View File
@@ -2,10 +2,4 @@ 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'
demos_test_name = 'D3D11_Groupshared'
+1 -8
View File
@@ -2,11 +2,4 @@ import rdtest
class D3D11_Workgroup_Zoo(rdtest.Workgroup_Zoo):
demos_test_name = 'D3D11_Workgroup_Zoo'
internal = False
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'
internal = False
@@ -4,12 +4,6 @@ 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")
@@ -3,9 +3,3 @@ import rdtest
class D3D12_Subgroup_Zoo(rdtest.Subgroup_Zoo):
demos_test_name = 'D3D12_Subgroup_Zoo'
internal = False
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'
@@ -3,10 +3,3 @@ import rdtest
class D3D12_Workgroup_Zoo(rdtest.Workgroup_Zoo):
demos_test_name = 'D3D12_Workgroup_Zoo'
internal = False
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'