blob: 3d1e3e3bddbeb75de35aa91cf9d0046e6d91f698 [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 */
Simon Glassb08439d2025-01-20 14:25:29 -070013#define CMD_TEST(_name, _flags) UNIT_TEST(_name, _flags, cmd)
Simon Glass621a97e2023-10-01 19:15:12 -060014
15#endif /* __TEST_CMD_H__ */