| 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..28616fb53147d6b65b76dfcf6bb0ef34001de1e7 100755
|
| --- a/testing/tools/run_corpus_tests.py
|
| +++ b/testing/tools/run_corpus_tests.py
|
| @@ -73,11 +73,13 @@ def main():
|
| failures.append(input_path)
|
|
|
| if surprises:
|
| + surprises.sort()
|
| print '\n\nUnexpected Successes:'
|
| for surprise in surprises:
|
| print surprise;
|
|
|
| if failures:
|
| + failures.sort()
|
| print '\n\nSummary of Failures:'
|
| for failure in failures:
|
| print failure
|
|
|