diff options
Diffstat (limited to 'roms/u-boot/include/test/overlay.h')
-rw-r--r-- | roms/u-boot/include/test/overlay.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/roms/u-boot/include/test/overlay.h b/roms/u-boot/include/test/overlay.h new file mode 100644 index 000000000..c13f4d66e --- /dev/null +++ b/roms/u-boot/include/test/overlay.h @@ -0,0 +1,15 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (c) 2016 NextThing Co + * Copyright (c) 2016 Free Electrons + */ + +#ifndef __TEST_OVERLAY_H__ +#define __TEST_OVERLAY_H__ + +#include <test/test.h> + +/* Declare a new environment test */ +#define OVERLAY_TEST(_name, _flags) UNIT_TEST(_name, _flags, overlay_test) + +#endif /* __TEST_OVERLAY_H__ */ |