1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (c) 2016 NextThing Co 4 * Copyright (c) 2016 Free Electrons 5 */ 6 7 #ifndef __TEST_OVERLAY_H__ 8 #define __TEST_OVERLAY_H__ 9 10 #include <test/test.h> 11 12 /* Declare a new FDT-overlay test */ 13 #define FDT_OVERLAY_TEST(_name, _flags) UNIT_TEST(_name, _flags, fdt_overlay) 14 15 /* Declare init for FDT-overlay test */ 16 #define FDT_OVERLAY_TEST_INIT(_name, _flags) \ 17 UNIT_TEST_INIT(_name, _flags, fdt_overlay) 18 19 #endif /* __TEST_OVERLAY_H__ */ 20