2017-01-10 06:08:33 +01:00
|
|
|
# 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=)
|
|
|
|
|
2020-08-31 03:13:25 +02:00
|
|
|
ALL_C_SOURCES += $(LIGHTNINGD_TEST_SRC)
|
2017-08-28 18:13:01 +02:00
|
|
|
ALL_TEST_PROGRAMS += $(LIGHTNINGD_TEST_PROGRAMS)
|
|
|
|
|
2017-08-28 18:05:01 +02:00
|
|
|
LIGHTNINGD_TEST_COMMON_OBJS := \
|
2019-02-21 04:45:55 +01:00
|
|
|
common/amount.o \
|
2021-09-21 09:23:10 +02:00
|
|
|
common/autodata.o \
|
2021-10-12 13:16:37 +02:00
|
|
|
common/base32.o \
|
json-invoice: add routeboost, warnings.
We split json_invoice(), as it now needs to round-trip to the gossipd,
and uniqueness checks need to happen *after* gossipd replies to avoid
a race.
For every candidate channel gossipd gives us, we check that it's in
state NORMAL (not shutting down, not still waiting for lockin), that
it's connected, and that it has capacity. We then choose one with
probability weighted by excess capacity, so larger channels are more
likely.
As a side effect of this, we can tell if an invoice is unpayble (no
channels have sufficient incoming capacity) or difficuly (no *online*
channels have sufficient capacity), so we add those warnings.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2018-09-27 07:29:17 +02:00
|
|
|
common/bech32.o \
|
2017-08-28 18:05:01 +02:00
|
|
|
common/daemon_conn.o \
|
|
|
|
common/htlc_state.o \
|
2021-12-15 02:37:35 +01:00
|
|
|
common/htlc_wire.o \
|
2022-07-04 05:49:38 +02:00
|
|
|
common/json_parse_simple.o \
|
2018-12-03 00:01:04 +01:00
|
|
|
common/key_derive.o \
|
2017-08-28 18:05:01 +02:00
|
|
|
common/pseudorand.o \
|
2020-08-11 07:05:56 +02:00
|
|
|
common/random_select.o \
|
2017-12-15 14:26:06 +01:00
|
|
|
common/memleak.o \
|
2017-08-28 18:05:01 +02:00
|
|
|
common/msg_queue.o \
|
2021-12-15 02:37:35 +01:00
|
|
|
common/onionreply.o \
|
2020-12-02 01:10:04 +01:00
|
|
|
common/setup.o \
|
2017-08-28 18:05:01 +02:00
|
|
|
common/utils.o \
|
2018-12-03 00:02:11 +01:00
|
|
|
common/utxo.o \
|
2017-08-28 18:05:01 +02:00
|
|
|
common/type_to_string.o \
|
2021-10-12 13:16:37 +02:00
|
|
|
common/permute_tx.o \
|
|
|
|
common/wireaddr.o \
|
2017-08-28 18:05:01 +02:00
|
|
|
|
2022-10-17 04:19:43 +02:00
|
|
|
$(LIGHTNINGD_TEST_PROGRAMS): $(CCAN_OBJS) $(BITCOIN_OBJS) $(WIRE_OBJS) $(LIGHTNINGD_TEST_COMMON_OBJS) $(WIRE_BOLT12_OBJS)
|
2017-01-10 06:08:33 +01:00
|
|
|
|
2021-12-16 20:07:33 +01:00
|
|
|
$(LIGHTNINGD_TEST_OBJS): $(LIGHTNINGD_HDRS) $(LIGHTNINGD_SRC) $(LIGHTNINGD_SRC_NOHDR)
|
2017-01-10 06:08:33 +01:00
|
|
|
|
2019-06-20 20:13:14 +02:00
|
|
|
check-units: $(LIGHTNINGD_TEST_PROGRAMS:%=unittest/%)
|