Re: [PATCH rtems-tools] tester/rt: use shlex.split to split command args

2023-06-20 Thread Chris Johns
Pushed Thanks Chris On 20/6/2023 8:47 am, Muhammad Sulthan Mazaya wrote: > The regular split-by-space function used to split command arguments > creates compatibility issues with many shell command syntaxes. A > specific example is the handling of string arguments, as shown below: > > %define

[PATCH rtems-tools] tester/rt: use shlex.split to split command args

2023-06-19 Thread Muhammad Sulthan Mazaya
The regular split-by-space function used to split command arguments creates compatibility issues with many shell command syntaxes. A specific example is the handling of string arguments, as shown below: %define renode_args -e start_opts -e "s %{bsp_resc_script}" Thus, it is changed to use