Re: [PATCH v2 25/39] efi: Use puts() in cout so that console recording works

2024-08-06 Thread Heinrich Schuchardt
On 06.08.24 14:58, Simon Glass wrote: At present EFI output to the console uses 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() f

[PATCH v2 25/39] efi: Use puts() in cout so that console recording works

2024-08-06 Thread Simon Glass
At present EFI output to the console uses 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 Re