xref: /openbmc/u-boot/include/test/env.h (revision 61a4392a)
1 /*
2  * (C) Copyright 2015
3  * Joe Hershberger, National Instruments, joe.hershberger@ni.com
4  *
5  * SPDX-License-Identifier:	GPL-2.0
6  */
7 
8 #ifndef __TEST_ENV_H__
9 #define __TEST_ENV_H__
10 
11 #include <test/test.h>
12 
13 /* Declare a new environment test */
14 #define ENV_TEST(_name, _flags)	UNIT_TEST(_name, _flags, env_test)
15 
16 #endif /* __TEST_ENV_H__ */
17