Skip to content

Commit

Permalink
Commands needs to be all strings
Browse files Browse the repository at this point in the history
Mixing Path with strings makes the RuntimeError string creation fail
on line 318 below in case of a failed run.

Signed-off-by: Per Åstrand <[email protected]>
Change-Id: Ib49c4396dc78b4c3cf0ad473e81a340ba7fc869a
  • Loading branch information
per committed Jan 23, 2025
1 parent a31d97b commit b32365a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backends/arm/test/runner_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def run_corstone(
"-C",
f"cpu0.semihosting-cmd_line='{cmd_line}'",
"-a",
elf_path,
str(elf_path),
"--timelimit",
f"{timeout}",
]
Expand Down Expand Up @@ -302,7 +302,7 @@ def run_corstone(
"-C",
f"mps4_board.subsystem.cpu0.semihosting-cmd_line='{cmd_line}'",
"-a",
elf_path,
str(elf_path),
"--timelimit",
f"{timeout}",
]
Expand Down

0 comments on commit b32365a

Please sign in to comment.