blob: c200570e423d396b839fc2bf7ca473ec3f707486 [file] [log] [blame]
Simon Glass621a97e2023-10-01 19:15:12 -06001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright 2023 Google LLC
4 * Written by Simon Glass <sjg@chromium.org>
5 */
6
7#ifndef __TEST_CMD_H__
8#define __TEST_CMD_H__
9
10#include <test/test.h>
11
12/* Declare a new command test */
13#define CMD_TEST(_name, _flags) UNIT_TEST(_name, _flags, cmd_test)
14
15#endif /* __TEST_CMD_H__ */