xref: /openbmc/linux/tools/testing/memblock/main.c (revision 877d95dc)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 #include "tests/basic_api.h"
3 #include "tests/alloc_api.h"
4 #include "tests/alloc_helpers_api.h"
5 #include "tests/alloc_nid_api.h"
6 #include "tests/common.h"
7 
8 int main(int argc, char **argv)
9 {
10 	parse_args(argc, argv);
11 	memblock_basic_checks();
12 	memblock_alloc_checks();
13 	memblock_alloc_helpers_checks();
14 	memblock_alloc_nid_checks();
15 
16 	return 0;
17 }
18