xref: /openbmc/u-boot/include/test/compression.h (revision b32b1bd1)
1 /*
2  * Copyright (c) 2017 Google, Inc
3  * Written by Simon Glass <sjg@chromium.org>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7 
8 #ifndef __TEST_COMPRESSION_H__
9 #define __TEST_COMPRESSION_H__
10 
11 #include <test/test.h>
12 
13 /* Declare a new compression test */
14 #define COMPRESSION_TEST(_name, _flags) \
15 		UNIT_TEST(_name, _flags, compression_test)
16 
17 #endif /* __TEST_ENV_H__ */
18