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:
Conner Fromknecht 2019-03-07 20:38:14 -08:00 committed by GitHub
commit e0886ff1f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -151,8 +151,7 @@ flakehunter: build-itest
flake-unit: flake-unit:
@$(call print, "Flake hunting unit tests.") @$(call print, "Flake hunting unit tests.")
GOTRACEBACK=all $(UNIT) -count=1 while [ $$? -eq 0 ]; do GOTRACEBACK=all $(UNIT) -count=1; done
while [ $$? -eq 0 ]; do /bin/sh -c "GOTRACEBACK=all $(UNIT) -count=1"; done
# ========= # =========
# UTILITIES # UTILITIES