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:
parent
cee18892b5
commit
b66f97c23a
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…
Reference in New Issue
Block a user