Skip to content

Commit

Permalink
Add note about path separator (#3285)
Browse files Browse the repository at this point in the history
b/260930391
  • Loading branch information
oxve committed May 20, 2024
1 parent 0d88688 commit d605ad2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions starboard/tools/testing/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,9 @@ def MakeLauncher():
# The filename is used by MH to deduce the target name.
xml_filename = f"{target_name}_testoutput.xml"
if out_path:
# Note that this path will use the host OS path separator.
# This can cause issues if the host and device path separators
# don't match. PS5 is one such example.
test_result_xml_path = os.path.join(out_path, xml_filename)
else:
test_result_xml_path = xml_filename
Expand Down

0 comments on commit d605ad2

Please sign in to comment.