Skip to content

Commit

Permalink
[CI] Add --trace_decode supports when starting an accessory from a YA…
Browse files Browse the repository at this point in the history
…ML test (project-chip#32221)
  • Loading branch information
vivien-apple authored Feb 22, 2024
1 parent c4927d4 commit 8fbe0a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ def _get_start_options(request):
elif name == 'crashLogPath':
options.append('--crash_log')
options.append(str(value))
elif name == 'traceDecode':
options.append('--trace_decode')
options.append(str(value))
elif name == 'registerKey':
pass
else:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<arg name="endUserSupportLogPath" type="char_string" optional="true"/>
<arg name="networkDiagnosticsLogPath" type="char_string" optional="true"/>
<arg name="crashLogPath" type="char_string" optional="true"/>
<arg name="traceDecode" type="int8u" optional="true"/>
</command>
<command source="client" code="1" name="Stop">
Expand Down

0 comments on commit 8fbe0a7

Please sign in to comment.