Home | History | Annotate | Download | only in tests

Lines Matching refs:results

14     6) Parse and report job results
179 # Look for test results in the automation program's output
183 "results")
184 results = result_summaries[-1].strip("-")
185 results = eval("".join(results.splitlines()))
188 for i, r in enumerate(results):
221 if results:
222 # Make sure all results have the required keys
223 for r in results:
231 # Sort the results by failures and total test count in descending order
232 results = [(r["fail"],
234 r) for r in results]
235 results.sort(reverse=True)
236 results = [r[-1] for r in results]
237 # Print results
240 name_length = max(len(r["job"]) for r in results)
247 for r in results:
263 failed_jobs = [r["job"] for r in results
265 running_jobs = [r["job"] for r in results