mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 18:04:48 +00:00

Some suites have a different name from that used in the linker list. That makes it hard to programmatically match the name printed when the suite runs to the linker-list name it has. Update the names so they are the same. Signed-off-by: Simon Glass <sjg@chromium.org>
15 lines
316 B
C
15 lines
316 B
C
/* 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__ */
|