summaryrefslogtreecommitdiffstats
path: root/tests/tests.c
diff options
context:
space:
mode:
authorAnastasia Klimchuk <aklm@chromium.org>2022-10-17 11:59:09 +1100
committerAnastasia Klimchuk <aklm@chromium.org>2022-11-08 21:09:42 +0000
commitaf2ba601f4840172eb422a0f3efb5a740fb9698d (patch)
treebafcf8a04415c6833e099d1b932bb52a2dbfe550 /tests/tests.c
parent0a896424abd490d1cfdd8a582ba17c25df75a0e0 (diff)
downloadflashrom-af2ba601f4840172eb422a0f3efb5a740fb9698d.tar.gz
flashrom-af2ba601f4840172eb422a0f3efb5a740fb9698d.tar.bz2
flashrom-af2ba601f4840172eb422a0f3efb5a740fb9698d.zip
tests: Add prefix to io_mock functions not to clash with macros
Flashrom I/O mock functions need to be renamed so that they do not have name clash with standard I/O, because the latter are allowed to be macros. Adding a prefix to flashrom mock functions avoids them being accidentally expanded. Standard I/O functions are expanded and flashrom mocks stay as they are. BUG=b:237606255 TEST=ninja test 1) gcc 12.2.0 on Debian 2) clang 15.0 on Chromium OS Ticket: https://ticket.coreboot.org/issues/411 Change-Id: I7998a8fb1b9e65621e12adbfab5460a245d5606b Signed-off-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/68433 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'tests/tests.c')
-rw-r--r--tests/tests.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/tests/tests.c b/tests/tests.c
index 77cb1effd..ea416b835 100644
--- a/tests/tests.c
+++ b/tests/tests.c
@@ -77,8 +77,8 @@ uint8_t __wrap_sio_read(uint16_t port, uint8_t reg)
static int mock_open(const char *pathname, int flags)
{
- if (get_io() && get_io()->open)
- return get_io()->open(get_io()->state, pathname, flags);
+ if (get_io() && get_io()->iom_open)
+ return get_io()->iom_open(get_io()->state, pathname, flags);
if (get_io() && get_io()->fallback_open_state) {
struct io_mock_fallback_open_state *io_state;
@@ -117,11 +117,11 @@ int __wrap___open64_2(const char *pathname, int flags)
int __wrap_ioctl(int fd, unsigned long int request, ...)
{
LOG_ME;
- if (get_io() && get_io()->ioctl) {
+ if (get_io() && get_io()->iom_ioctl) {
va_list args;
int out;
va_start(args, request);
- out = get_io()->ioctl(get_io()->state, fd, request, args);
+ out = get_io()->iom_ioctl(get_io()->state, fd, request, args);
va_end(args);
return out;
}
@@ -131,32 +131,32 @@ int __wrap_ioctl(int fd, unsigned long int request, ...)
int __wrap_write(int fd, const void *buf, size_t sz)
{
LOG_ME;
- if (get_io() && get_io()->write)
- return get_io()->write(get_io()->state, fd, buf, sz);
+ if (get_io() && get_io()->iom_write)
+ return get_io()->iom_write(get_io()->state, fd, buf, sz);
return sz;
}
int __wrap_read(int fd, void *buf, size_t sz)
{
LOG_ME;
- if (get_io() && get_io()->read)
- return get_io()->read(get_io()->state, fd, buf, sz);
+ if (get_io() && get_io()->iom_read)
+ return get_io()->iom_read(get_io()->state, fd, buf, sz);
return sz;
}
FILE *__wrap_fopen(const char *pathname, const char *mode)
{
LOG_ME;
- if (get_io() && get_io()->fopen)
- return get_io()->fopen(get_io()->state, pathname, mode);
+ if (get_io() && get_io()->iom_fopen)
+ return get_io()->iom_fopen(get_io()->state, pathname, mode);
return not_null();
}
FILE *__wrap_fopen64(const char *pathname, const char *mode)
{
LOG_ME;
- if (get_io() && get_io()->fopen)
- return get_io()->fopen(get_io()->state, pathname, mode);
+ if (get_io() && get_io()->iom_fopen)
+ return get_io()->iom_fopen(get_io()->state, pathname, mode);
return not_null();
}
@@ -217,16 +217,16 @@ int __wrap___fxstat64(int fd, void *buf)
char *__wrap_fgets(char *buf, int len, FILE *fp)
{
LOG_ME;
- if (get_io() && get_io()->fgets)
- return get_io()->fgets(get_io()->state, buf, len, fp);
+ if (get_io() && get_io()->iom_fgets)
+ return get_io()->iom_fgets(get_io()->state, buf, len, fp);
return NULL;
}
size_t __wrap_fread(void *ptr, size_t size, size_t nmemb, FILE *fp)
{
LOG_ME;
- if (get_io() && get_io()->fread)
- return get_io()->fread(get_io()->state, ptr, size, nmemb, fp);
+ if (get_io() && get_io()->iom_fread)
+ return get_io()->iom_fread(get_io()->state, ptr, size, nmemb, fp);
return nmemb;
}
@@ -263,11 +263,11 @@ int __wrap_setvbuf(FILE *fp, char *buf, int type, size_t size)
int __wrap_fprintf(FILE *fp, const char *fmt, ...)
{
LOG_ME;
- if (get_io() && get_io()->fprintf) {
+ if (get_io() && get_io()->iom_fprintf) {
va_list args;
int out;
va_start(args, fmt);
- out = get_io()->fprintf(get_io()->state, fp, fmt, args);
+ out = get_io()->iom_fprintf(get_io()->state, fp, fmt, args);
va_end(args);
return out;
}
@@ -277,8 +277,8 @@ int __wrap_fprintf(FILE *fp, const char *fmt, ...)
int __wrap_fclose(FILE *fp)
{
LOG_ME;
- if (get_io() && get_io()->fclose)
- return get_io()->fclose(get_io()->state, fp);
+ if (get_io() && get_io()->iom_fclose)
+ return get_io()->iom_fclose(get_io()->state, fp);
return 0;
}