]> git.ipfire.org Git - thirdparty/u-boot.git/blame - test/cmd/mem.c
test: Remove <common.h> and add needed includes
[thirdparty/u-boot.git] / test / cmd / mem.c
CommitLineData
550a9e79
SG
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Executes tests for memory-related commands
4 *
5 * Copyright 2020 Google LLC
6 */
7
550a9e79
SG
8#include <command.h>
9#include <test/suites.h>
10#include <test/test.h>
11
12int do_ut_mem(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
13{
a7a98755
SG
14 struct unit_test *tests = UNIT_TEST_SUITE_START(mem_test);
15 const int n_ents = UNIT_TEST_SUITE_COUNT(mem_test);
550a9e79 16
353df8d3 17 return cmd_ut_category("cmd_mem", "mem_test_", tests, n_ents, argc,
550a9e79
SG
18 argv);
19}