File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -57,9 +57,6 @@ XARGS := xargs -L 1
5757
5858LINT = $(LINT_BIN ) run -v
5959
60- UNIT := $(GOLIST ) | $(XARGS ) env $(GOTEST )
61- UNIT_RACE := $(UNIT ) -race
62-
6360include make/release_flags.mk
6461include make/testing_flags.mk
6562
@@ -199,7 +196,7 @@ check: unit
199196unit :
200197 @$(call print, "Running unit tests.")
201198 mkdir -p app/build && touch app/build/index.html
202- $(UNIT ) -tags= " $( LND_RELEASE_TAGS ) "
199+ $(UNIT )
203200
204201unit-cover : $(GOACC_BIN )
205202 @$(call print, "Running unit coverage tests.")
@@ -208,7 +205,7 @@ unit-cover: $(GOACC_BIN)
208205unit-race :
209206 @$(call print, "Running unit race tests.")
210207 mkdir -p app/build && touch app/build/index.html
211- env CGO_ENABLED=1 GORACE=" history_size=7 halt_on_errors=1" $(UNIT_RACE ) -tags= " $( LND_RELEASE_TAGS ) "
208+ env CGO_ENABLED=1 GORACE=" history_size=7 halt_on_errors=1" $(UNIT_RACE )
212209
213210clean-itest :
214211 @$(call print, "Cleaning itest binaries.")
Original file line number Diff line number Diff line change 1+ include make/compile_flags.mk
2+
13ITEST_FLAGS =
24
35# Define the integration test.run filter if the icase argument was provided.
46ifneq ($(icase ) ,)
57ITEST_FLAGS += -test.run="TestLightningTerminal/$(icase ) "
68endif
9+
10+ UNIT := $(GOLIST ) | $(XARGS ) env $(GOTEST ) -tags="$(COMPILE_TAGS ) "
11+ UNIT_RACE := $(UNIT ) -race
You can’t perform that action at this time.
0 commit comments