Files
Rusty Russell f8fd97fb5d global: replace randombytes_buf() with randbytes() wrapper.
This allows us to override it for deterministic results.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2025-11-13 21:21:29 +10:30

37 lines
1.1 KiB
Makefile

# Note that these actually #include everything they need, except ccan/ and bitcoin/.
# That allows for unit testing of statics, and special effects.
CHANNELD_TEST_SRC := $(wildcard channeld/test/run-*.c)
CHANNELD_TEST_OBJS := $(CHANNELD_TEST_SRC:.c=.o)
CHANNELD_TEST_PROGRAMS := $(CHANNELD_TEST_OBJS:.o=)
ALL_C_SOURCES += $(CHANNELD_TEST_SRC)
ALL_TEST_PROGRAMS += $(CHANNELD_TEST_PROGRAMS)
# run-full_channel.o needs a special version of some common files!
$(filter-out channeld/test/run-full_channel,$(CHANNELD_TEST_PROGRAMS)): libcommon.a
channeld/test/run-full_channel: \
$(BITCOIN_OBJS) \
wire/towire.o \
wire/fromwire.o \
common/amount.o \
common/autodata.o \
common/channel_type.o \
common/daemon_conn.o \
common/features.o \
common/htlc_state.o \
common/htlc_trim.o \
common/htlc_tx.o \
common/initial_commit_tx.o \
common/key_derive.o \
common/msg_queue.o \
common/permute_tx.o \
common/pseudorand.o \
common/randbytes.o \
common/setup.o \
common/utils.o
$(CHANNELD_TEST_OBJS): $(CHANNELD_HEADERS) $(CHANNELD_SRC) channeld/test/Makefile
check-units: $(CHANNELD_TEST_PROGRAMS:%=unittest/%)