mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
Merge pull request #2739 from wpaulino/make-flake-unit-fix
Makefile: fix unit test flakehunter when running on specific package
This commit is contained in:
commit
e0886ff1f5
1 changed files with 1 additions and 2 deletions
3
Makefile
3
Makefile
|
@ -151,8 +151,7 @@ flakehunter: build-itest
|
|||
|
||||
flake-unit:
|
||||
@$(call print, "Flake hunting unit tests.")
|
||||
GOTRACEBACK=all $(UNIT) -count=1
|
||||
while [ $$? -eq 0 ]; do /bin/sh -c "GOTRACEBACK=all $(UNIT) -count=1"; done
|
||||
while [ $$? -eq 0 ]; do GOTRACEBACK=all $(UNIT) -count=1; done
|
||||
|
||||
# =========
|
||||
# UTILITIES
|
||||
|
|
Loading…
Add table
Reference in a new issue