From 6df99e4d941e448ccf5f7a388bb1f2904dafb051 Mon Sep 17 00:00:00 2001 From: Jake Turner Date: Thu, 30 Jul 2026 16:34:31 +0100 Subject: [PATCH] Extend python helper functions for D3D12 indirect action names --- util/test/rdtest/testcase.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util/test/rdtest/testcase.py b/util/test/rdtest/testcase.py index ae2917168..2141367bb 100644 --- a/util/test/rdtest/testcase.py +++ b/util/test/rdtest/testcase.py @@ -1203,6 +1203,9 @@ class TestCase: # Action: *Indirect(1) => <3,2> should have Indirect sub-command({ 3,2 }) as previous event if "Indirect(1) => <" in actionName: event = action.events[-2] + # Action: [x] argY: Indirect*(<3,3>) : should have event Indirect*({ 3,3 }) as its event + if re.match(r"\[[0-9]+\] arg[0-9]+: Indirect.*\(", actionName): + event = action.events[-1] if event is not None: chunkIndex = event.chunkIndex