Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1134)

Unified Diff: testing/tools/run_corpus_tests.py

Issue 1232203003: Sort unexpected test results. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | testing/tools/run_javascript_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/tools/run_corpus_tests.py
diff --git a/testing/tools/run_corpus_tests.py b/testing/tools/run_corpus_tests.py
index dbc8f35a9172d307d19118ed30ecf529dfc74e34..04a7970f4f26cdc089dee2293f3c5433b28b54b9 100755
--- a/testing/tools/run_corpus_tests.py
+++ b/testing/tools/run_corpus_tests.py
@@ -74,11 +74,13 @@ def main():
if surprises:
print '\n\nUnexpected Successes:'
+ surprise.sort()
Tom Sepez 2015/07/16 18:13:20 nit: would prefer all of these one line earlier, j
Lei Zhang 2015/07/16 19:06:38 Done.
for surprise in surprises:
print surprise;
if failures:
print '\n\nSummary of Failures:'
+ failures.sort()
for failure in failures:
print failure
return 1
« no previous file with comments | « no previous file | testing/tools/run_javascript_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698