mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-20 10:39:01 +01:00
Merge pull request #3518 from halseth/make-default-backend
[trivial] make: default backend variable to btcd
This commit is contained in:
commit
211eb4d472
@ -55,14 +55,12 @@ UNIT_RACE := $(UNIT) -race
|
||||
endif
|
||||
|
||||
|
||||
# Construct the integration test command with the added build flags.
|
||||
ITEST_TAGS := $(DEV_TAGS) rpctest chainrpc walletrpc signrpc invoicesrpc autopilotrpc routerrpc watchtowerrpc wtclientrpc
|
||||
|
||||
# Default to btcd backend if not set.
|
||||
ifneq ($(backend),)
|
||||
ITEST_TAGS += ${backend}
|
||||
else
|
||||
ITEST_TAGS += btcd
|
||||
ifeq ($(backend),)
|
||||
backend = btcd
|
||||
endif
|
||||
|
||||
# Construct the integration test command with the added build flags.
|
||||
ITEST_TAGS := $(DEV_TAGS) rpctest chainrpc walletrpc signrpc invoicesrpc autopilotrpc routerrpc watchtowerrpc wtclientrpc $(backend)
|
||||
|
||||
ITEST := rm lntest/itest/*.log; date; $(GOTEST) ./lntest/itest -tags="$(ITEST_TAGS)" $(TEST_FLAGS) -logoutput -goroutinedump
|
||||
|
Loading…
Reference in New Issue
Block a user