mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-20 13:34:32 +01:00
makefile flakehunter: call $(ITEST) directly, print current time
For some reason, starting the integration test using /bin/sh -c would cause unit tests to also be run. We fix this by just calling $(ITEST).
This commit is contained in:
parent
ddcbb40898
commit
bc22fc9b63
1 changed files with 1 additions and 2 deletions
3
Makefile
3
Makefile
|
@ -166,8 +166,7 @@ unit-race:
|
|||
|
||||
flakehunter: build
|
||||
@$(call print, "Flake hunting integration tests.")
|
||||
$(ITEST)
|
||||
while [ $$? -eq 0 ]; do /bin/sh -c "$(ITEST)"; done
|
||||
while [ $$? -eq 0 ]; do $(ITEST); done
|
||||
|
||||
flake-unit:
|
||||
@$(call print, "Flake hunting unit tests.")
|
||||
|
|
Loading…
Add table
Reference in a new issue