2022-05-12 10:47:00 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "tests/basic_api.h"
|
|
|
|
#include "tests/alloc_api.h"
|
|
|
|
#include "tests/alloc_helpers_api.h"
|
|
|
|
#include "tests/alloc_nid_api.h"
|
2022-09-09 14:21:57 +05:00
|
|
|
#include "tests/common.h"
|
2022-05-12 10:47:00 -07:00
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2022-09-09 14:21:57 +05:00
|
|
|
parse_args(argc, argv);
|
2022-05-12 10:47:00 -07:00
|
|
|
memblock_basic_checks();
|
|
|
|
memblock_alloc_checks();
|
|
|
|
memblock_alloc_helpers_checks();
|
|
|
|
memblock_alloc_nid_checks();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|