summaryrefslogtreecommitdiff
path: root/include/test/cmd.h
blob: 3d1e3e3bddbeb75de35aa91cf9d0046e6d91f698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright 2023 Google LLC
 * Written by Simon Glass <sjg@chromium.org>
 */

#ifndef __TEST_CMD_H__
#define __TEST_CMD_H__

#include <test/test.h>

/* Declare a new command test */
#define CMD_TEST(_name, _flags) UNIT_TEST(_name, _flags, cmd)

#endif /* __TEST_CMD_H__ */