mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 10:30:32 +00:00
cb1277cc4d
Introduce a new subcommand to ut: ut hush. For the moment, this command does nothing, future commits will add tests which will be run on command call. Note that CONFIG_HUSH_PARSER must be defined to compile this new subcommand. Signed-off-by: Francis Laniel <francis.laniel@amarulasolutions.com> Reviewed-by: Simon Glass <sjg@chromium.org>
15 lines
352 B
C
15 lines
352 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* (C) Copyright 2021
|
|
* Francis Laniel, Amarula Solutions, francis.laniel@amarulasolutions.com
|
|
*/
|
|
|
|
#ifndef __TEST_HUSH_H__
|
|
#define __TEST_HUSH_H__
|
|
|
|
#include <test/test.h>
|
|
|
|
/* Declare a new environment test */
|
|
#define HUSH_TEST(_name, _flags) UNIT_TEST(_name, _flags, hush_test)
|
|
|
|
#endif /* __TEST_HUSH_H__ */
|