Re: [PATCH 1/7] efi: Use puts() in cout so that console recording works

2023-11-21 Thread Ilias Apalodimas
On Tue, 21 Nov 2023 at 13:36, Simon Glass wrote: > > At present EFI output to the console use fputs() which bypasses the nit, use ->uses > console-recording feature. This makes it impossible for tests to check > the output of an EFI app. > > There doesn't seem to be any need to do this bypass,

Re: [PATCH 1/7] efi: Use puts() in cout so that console recording works

2023-11-21 Thread Heinrich Schuchardt
On 11/21/23 12:35, Simon Glass wrote: At present EFI output to the console use fputs() which bypasses the console-recording feature. This makes it impossible for tests to check the output of an EFI app. There doesn't seem to be any need to do this bypass, so adjust it to simply use the puts()

[PATCH 1/7] efi: Use puts() in cout so that console recording works

2023-11-21 Thread Simon Glass
At present EFI output to the console use fputs() which bypasses the console-recording feature. This makes it impossible for tests to check the output of an EFI app. There doesn't seem to be any need to do this bypass, so adjust it to simply use the puts() function. Signed-off-by: Simon Glass