sanitycheck: retry-failed comment

Add a comment about how deal with retries when a test fails to build.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2020-12-09 12:13:41 -05:00
commit 7822e7b50d

View file

@ -1185,6 +1185,8 @@ def main():
print("")
retries = retries - 1
# There are cases where failed == error (only build failures),
# we do not try build failures.
if retries == 0 or results.failed == results.error:
break