mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 13:25:43 +01:00
40315bfb91
Test objects must be added to $(ALL_OBJS) so they correctly depend on CCAN headers etc. Also, each test in a subdir must depend on headers and src in the parent directory, as it will often #include them directly. Reported-by: Christian Decker Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
26 lines
901 B
Makefile
26 lines
901 B
Makefile
# Note that these actually #include everything they need, except ccan/ and bitcoin/.
|
|
# That allows for unit testing of statics, and special effects.
|
|
LIGHTNINGD_TEST_SRC := $(wildcard lightningd/test/run-*.c)
|
|
LIGHTNINGD_TEST_OBJS := $(LIGHTNINGD_TEST_SRC:.c=.o)
|
|
LIGHTNINGD_TEST_PROGRAMS := $(LIGHTNINGD_TEST_OBJS:.o=)
|
|
|
|
ALL_TEST_PROGRAMS += $(LIGHTNINGD_TEST_PROGRAMS)
|
|
ALL_OBJS += $(LIGHTNINGD_TEST_OBJS)
|
|
|
|
LIGHTNINGD_TEST_COMMON_OBJS := \
|
|
common/daemon_conn.o \
|
|
common/htlc_state.o \
|
|
common/pseudorand.o \
|
|
common/msg_queue.o \
|
|
common/utils.o \
|
|
common/type_to_string.o \
|
|
common/permute_tx.o
|
|
|
|
update-mocks: $(LIGHTNINGD_TEST_SRC:%=update-mocks/%)
|
|
|
|
$(LIGHTNINGD_TEST_PROGRAMS): $(CCAN_OBJS) $(BITCOIN_OBJS) $(WIRE_OBJS) $(LIBBASE58_OBJS) $(LIGHTNINGD_TEST_COMMON_OBJS)
|
|
|
|
$(LIGHTNINGD_TEST_OBJS): $(LIGHTNINGD_HEADERS) $(LIGHTNINGD_SRC)
|
|
|
|
check: $(LIGHTNINGD_TEST_PROGRAMS:%=unittest/%)
|