mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-16 04:05:53 +00:00
16 lines
338 B
C
16 lines
338 B
C
|
// 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"
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
memblock_basic_checks();
|
||
|
memblock_alloc_checks();
|
||
|
memblock_alloc_helpers_checks();
|
||
|
memblock_alloc_nid_checks();
|
||
|
|
||
|
return 0;
|
||
|
}
|