blob: 2b78e421a9c5e3202301a63a77a0b9fdfd764b0e [file] [log] [blame]
// SPDX-License-Identifier: GPL-2.0+
/*
* Executes tests for memory-related commands
*
* Copyright 2020 Google LLC
*/
#include <command.h>
#include <test/suites.h>
#include <test/test.h>
int do_ut_mem(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
{
struct unit_test *tests = UNIT_TEST_SUITE_START(mem);
const int n_ents = UNIT_TEST_SUITE_COUNT(mem);
return cmd_ut_category("mem", "mem_test_", tests, n_ents, argc,
argv);
}