1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 06:23:18 +02:00

tests: Add fwrite and fdopen to io_mock

BUG=None
BRANCH=None
TEST=None

Change-Id: I4dff96c264b3ada354538b434b2808fb66c7ef59
Signed-off-by: Evan Benn <evanbenn@chromium.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/69538
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Evan Benn
2022-11-14 10:31:22 +11:00
committed by Anastasia Klimchuk
parent 67a393b88a
commit da6d28f2d1
2 changed files with 6 additions and 0 deletions

View File

@ -184,6 +184,8 @@ FILE *__wrap_fopen64(const char *pathname, const char *mode)
FILE *__wrap_fdopen(int fd, const char *mode)
{
LOG_ME;
if (get_io() && get_io()->iom_fdopen)
return get_io()->iom_fdopen(get_io()->state, fd, mode);
return not_null();
}
@ -254,6 +256,8 @@ size_t __wrap_fread(void *ptr, size_t size, size_t nmemb, FILE *fp)
size_t __wrap_fwrite(const void *ptr, size_t size, size_t nmemb, FILE *fp)
{
LOG_ME;
if (get_io() && get_io()->iom_fwrite)
return get_io()->iom_fwrite(get_io()->state, ptr, size, nmemb, fp);
return nmemb;
}