summaryrefslogtreecommitdiffstats
path: root/tests/tests.c
blob: 32353fa68bf18ef000ce597842e97950d99992d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <include/test.h>
#include "tests.h"

#include <stdio.h>

/* redefinitions/wrapping */
void __wrap_physunmap(void *virt_addr, size_t len)
{
	fprintf(stderr, "%s\n", __func__);
}
void *__wrap_physmap(const char *descr, uintptr_t phys_addr, size_t len)
{
	fprintf(stderr, "%s\n", __func__);
	return NULL;
}

int main(void)
{
	int ret = 0;

	return ret;
}