summaryrefslogtreecommitdiff
path: root/cross-project-tests/debuginfo-tests/dexter/dex/tools/test/Tool.py
diff options
context:
space:
mode:
Diffstat (limited to 'cross-project-tests/debuginfo-tests/dexter/dex/tools/test/Tool.py')
-rw-r--r--cross-project-tests/debuginfo-tests/dexter/dex/tools/test/Tool.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cross-project-tests/debuginfo-tests/dexter/dex/tools/test/Tool.py b/cross-project-tests/debuginfo-tests/dexter/dex/tools/test/Tool.py
index c366062cec7a..693c05b97af7 100644
--- a/cross-project-tests/debuginfo-tests/dexter/dex/tools/test/Tool.py
+++ b/cross-project-tests/debuginfo-tests/dexter/dex/tools/test/Tool.py
@@ -121,7 +121,8 @@ class Tool(TestToolBase):
self.context.options.source_files.extend(list(new_source_files))
- if "DexLimitSteps" in step_collection.commands:
+ cond_controller_cmds = ["DexLimitSteps", "DexStepFunction", "DexContinue"]
+ if any(c in step_collection.commands for c in cond_controller_cmds):
debugger_controller = ConditionalController(self.context, step_collection)
else:
debugger_controller = DefaultController(self.context, step_collection)