Home | History | Annotate | Download | only in site_utils

Lines Matching refs:summary

372     summary = []
374 summary.append(('Results of %d test(s) do not match expected '
376 summary.extend(mismatch_errors)
377 summary.append('\n')
380 summary.append('%d test(s) are not expected to be run:' %
382 summary.extend(extra_test_errors)
383 summary.append('\n')
386 summary.append('%d test(s) are missing from the results:' %
388 summary.extend(missing_test_errors)
389 summary.append('\n')
397 summary.append('Failed to load page for link to log: %s.' % log_link)
399 summary:
400 raise TestPushException('\n'.join(summary))