mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-06 05:49:30 +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
805 B
Makefile
26 lines
805 B
Makefile
check: gossipd-tests
|
|
|
|
# Note that these actually #include everything they need, except ccan/ and bitcoin/.
|
|
# That allows for unit testing of statics, and special effects.
|
|
GOSSIPD_TEST_SRC := $(wildcard gossipd/test/run-*.c)
|
|
GOSSIPD_TEST_OBJS := $(GOSSIPD_TEST_SRC:.c=.o)
|
|
GOSSIPD_TEST_PROGRAMS := $(GOSSIPD_TEST_OBJS:.o=)
|
|
|
|
GOSSIPD_TEST_COMMON_OBJS := \
|
|
common/pseudorand.o \
|
|
common/type_to_string.o \
|
|
common/utils.o
|
|
|
|
update-mocks: $(GOSSIPD_TEST_SRC:%=update-mocks/%)
|
|
|
|
$(GOSSIPD_TEST_PROGRAMS): $(GOSSIPD_TEST_COMMON_OBJS) $(BITCOIN_OBJS)
|
|
|
|
# Test objects depend on ../ src and headers.
|
|
$(GOSSIPD_TEST_OBJS): $(LIGHTNINGD_GOSSIP_HEADERS) $(LIGHTNINGD_GOSSIP_SRC)
|
|
|
|
ALL_OBJS += $(GOSSIPD_TEST_OBJS)
|
|
ALL_TEST_PROGRAMS += $(GOSSIPD_TEST_PROGRAMS)
|
|
|
|
gossipd-tests: $(GOSSIPD_TEST_PROGRAMS:%=unittest/%)
|
|
|