summaryrefslogtreecommitdiff
path: root/tools/testing/memblock/main.c
blob: e7cc45dc06d46204dbf5c3508871550c7d46a1db (plain)
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: GPL-2.0-or-later
#include "tests/basic_api.h"
#include "tests/alloc_api.h"

int main(int argc, char **argv)
{
	memblock_basic_checks();
	memblock_alloc_checks();

	return 0;
}