Simon Glass | 621a97e | 2023-10-01 19:15:12 -0600 | [diff] [blame^] | 1 | /* 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__ */ |