Makefile: fix unit test flakehunter when running on specific package

When using the unit test flakehunter and specifying a package, after the
first successful run, all of the tests would be run, rather than just
the ones within the specified package.
This commit is contained in:
Wilmer Paulino 2019-03-06 17:30:28 -08:00
parent cee18892b5
commit b66f97c23a
No known key found for this signature in database
GPG Key ID: 6DF57B9F9514972F

View File

@ -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