Skip to content

Commit 8fbe0a7

Browse files
authored
[CI] Add --trace_decode supports when starting an accessory from a YAML test (project-chip#32221)
1 parent c4927d4 commit 8fbe0a7

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

scripts/py_matter_yamltests/matter_yamltests/pseudo_clusters/clusters/accessory_server_bridge.py

+3
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ def _get_start_options(request):
7777
elif name == 'crashLogPath':
7878
options.append('--crash_log')
7979
options.append(str(value))
80+
elif name == 'traceDecode':
81+
options.append('--trace_decode')
82+
options.append(str(value))
8083
elif name == 'registerKey':
8184
pass
8285
else:

scripts/py_matter_yamltests/matter_yamltests/pseudo_clusters/clusters/system_commands.py

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<arg name="endUserSupportLogPath" type="char_string" optional="true"/>
3434
<arg name="networkDiagnosticsLogPath" type="char_string" optional="true"/>
3535
<arg name="crashLogPath" type="char_string" optional="true"/>
36+
<arg name="traceDecode" type="int8u" optional="true"/>
3637
</command>
3738
3839
<command source="client" code="1" name="Stop">

0 commit comments

Comments
 (0)