Skip to content

Commit 9649d36

Browse files
committed
Added running total for target being compiled.
1 parent ca6bfe0 commit 9649d36

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/check_release.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,7 @@ def log_results(lst, title):
466466
repo_path)
467467

468468
total = len(supported_targets) * len(tests)
469+
current = 0
469470
retries = 10
470471
passes = 0
471472
failures = []
@@ -475,8 +476,9 @@ def log_results(lst, title):
475476
for test in tests:
476477
rel_log.info("COMPILING PROGRAM: %s\n", test)
477478
for target in supported_targets:
479+
current += 1
478480
for retry in range(0, retries):
479-
rel_log.info("COMPILING TARGET: %s , attempt %u\n", target, retry)
481+
rel_log.info("COMPILING TARGET (%d/%d): %s , attempt %u\n", current, total, target, retry)
480482
result, mesg = build_repo(target, test, user, password)
481483
if not result:
482484
if mesg == 'Internal':

0 commit comments

Comments
 (0)