mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 13:25:43 +01:00
220449e1cd
These are generalized from our internal implementations. The main difference is that 'struct json_escaped' is now 'struct json_escape', so we replace that immediately. The difference between lightningd's json-writing ringbuffer and the more generic ccan/json_out is that the latter has a better API and handles escaping transparently if something slips through (though it does offer direct accessors so you can mess things up yourself!). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
33 lines
1.0 KiB
Makefile
33 lines
1.0 KiB
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/amount.o \
|
|
common/bech32.o \
|
|
common/daemon_conn.o \
|
|
common/htlc_state.o \
|
|
common/io_lock.o \
|
|
common/json.o \
|
|
common/key_derive.o \
|
|
common/pseudorand.o \
|
|
common/memleak.o \
|
|
common/msg_queue.o \
|
|
common/utils.o \
|
|
common/utxo.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) $(LIGHTNINGD_TEST_COMMON_OBJS)
|
|
|
|
$(LIGHTNINGD_TEST_OBJS): $(LIGHTNINGD_HEADERS) $(LIGHTNINGD_SRC)
|
|
|
|
check: $(LIGHTNINGD_TEST_PROGRAMS:%=unittest/%)
|