aboutsummaryrefslogtreecommitdiff
path: root/lib/efi_selftest/efi_selftest_variables_runtime.c
Commit message (Collapse)AuthorAgeFilesLines
* efi: Use 16-bit unicode stringsSimon Glass2022-02-031-2/+2
| | | | | | | | | | At present we use wide characters for unicode but this is not necessary. Change the code to use the 'u' literal instead. This helps to fix build warnings for sandbox on rpi. Signed-off-by: Simon Glass <sjg@chromium.org> Suggested-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
* efi_selftest: adjust runtime test for variablesHeinrich Schuchardt2020-07-111-7/+6
| | | | | | | As variable services are available at runtime we have to expect EFI_SUCCESS when calling the services. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
* efi_selftest: test variable services at runtimeHeinrich Schuchardt2019-07-061-0/+94
Provide a unit test for the variable services at runtime. Currently we expect EFI_UNSUPPORTED to be returned as the runtime implementation is still missing. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>