diff --git a/util/test/tests/D3D11/D3D11_Shader_ISA.py b/util/test/tests/D3D11/D3D11_Shader_ISA.py index 5c6e69eee..14208056c 100644 --- a/util/test/tests/D3D11/D3D11_Shader_ISA.py +++ b/util/test/tests/D3D11/D3D11_Shader_ISA.py @@ -19,7 +19,7 @@ class D3D11_Shader_ISA(rdtest.TestCase): refl: rd.ShaderReflection = pipe.GetShaderReflection(rd.ShaderStage.Vertex) - isas: List[str] = self.controller.GetDisassemblyTargets() + isas: List[str] = self.controller.GetDisassemblyTargets(True) if isas == []: raise rdtest.TestFailureException("Expected some disassembly targets, got none!") diff --git a/util/test/tests/D3D12/D3D12_Shader_ISA.py b/util/test/tests/D3D12/D3D12_Shader_ISA.py index 2b4d435ae..e50241f11 100644 --- a/util/test/tests/D3D12/D3D12_Shader_ISA.py +++ b/util/test/tests/D3D12/D3D12_Shader_ISA.py @@ -19,7 +19,7 @@ class D3D12_Shader_ISA(rdtest.TestCase): refl: rd.ShaderReflection = pipe.GetShaderReflection(rd.ShaderStage.Vertex) - isas: List[str] = self.controller.GetDisassemblyTargets() + isas: List[str] = self.controller.GetDisassemblyTargets(True) if isas == []: raise rdtest.TestFailureException("Expected some disassembly targets, got none!") diff --git a/util/test/tests/GL/GL_Shader_ISA.py b/util/test/tests/GL/GL_Shader_ISA.py index cc54635c6..d8a58a97d 100644 --- a/util/test/tests/GL/GL_Shader_ISA.py +++ b/util/test/tests/GL/GL_Shader_ISA.py @@ -19,7 +19,7 @@ class GL_Shader_ISA(rdtest.TestCase): refl: rd.ShaderReflection = pipe.GetShaderReflection(rd.ShaderStage.Vertex) - isas: List[str] = self.controller.GetDisassemblyTargets() + isas: List[str] = self.controller.GetDisassemblyTargets(True) if isas == []: raise rdtest.TestFailureException("Expected some disassembly targets, got none!") diff --git a/util/test/tests/Vulkan/VK_Shader_ISA.py b/util/test/tests/Vulkan/VK_Shader_ISA.py index 0059fc5be..f8c894dfc 100644 --- a/util/test/tests/Vulkan/VK_Shader_ISA.py +++ b/util/test/tests/Vulkan/VK_Shader_ISA.py @@ -19,7 +19,7 @@ class VK_Shader_ISA(rdtest.TestCase): refl: rd.ShaderReflection = pipe.GetShaderReflection(rd.ShaderStage.Vertex) - isas: List[str] = self.controller.GetDisassemblyTargets() + isas: List[str] = self.controller.GetDisassemblyTargets(True) if isas == []: raise rdtest.TestFailureException("Expected some disassembly targets, got none!")