mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-20 12:23:25 +00:00
Change verbose and movable node build options to run-time options.
Movable node usage:
$ ./main -m
Or:
$ ./main --movable-node
Verbose usage:
$ ./main -v
Or:
$ ./main --verbose
Signed-off-by: Rebecca Mckeever <remckee0@gmail.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
Link: https://lore.kernel.org/r/20220714031717.12258-1-remckee0@gmail.com
18 lines
389 B
C
18 lines
389 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"
|
|
#include "tests/common.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
parse_args(argc, argv);
|
|
memblock_basic_checks();
|
|
memblock_alloc_checks();
|
|
memblock_alloc_helpers_checks();
|
|
memblock_alloc_nid_checks();
|
|
|
|
return 0;
|
|
}
|