Re: [U-Boot] [PATCHv2 09/13] test/py: Update test_fs to decode check_output calls

2019-10-23 Thread Simon Glass
On Tue, 22 Oct 2019 at 21:20, Tom Rini wrote: > > The check_output function from the subprocess Python module by default > returns data as encoded bytes and leaves decoding to the application. > Given our uses of the call, it makes the most sense to immediately > decode the results. > >

[U-Boot] [PATCHv2 09/13] test/py: Update test_fs to decode check_output calls

2019-10-22 Thread Tom Rini
The check_output function from the subprocess Python module by default returns data as encoded bytes and leaves decoding to the application. Given our uses of the call, it makes the most sense to immediately decode the results. Signed-off-by: Tom Rini --- Changes in v2: - New patch ---