diff options
author | Craig Tiller <ctiller@google.com> | 2016-05-13 15:59:09 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-05-13 15:59:09 -0700 |
commit | 2b59dbce3024bc14fa51b6e134df5ce015bb32c6 (patch) | |
tree | 729305546362dcfafe26b3ac526311af3d7118c3 /tools | |
parent | 23b6cdb59d8c7b03cfef727028abd3a6f1fc6e54 (diff) |
Fixes
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 37291f4d3f..2f0f1f7473 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -1198,7 +1198,7 @@ def _build_and_run( cache=cache if not xml_report else None, add_env={'GRPC_TEST_PORT_SERVER': 'localhost:%d' % port_server_port}) if resultset: - for k, v in resultset.iteritems(): + for k, v in sorted(resultset.items()): num_runs, num_failures = _calculate_num_runs_failures(v) if num_failures == num_runs: # what about infinite_runs??? jobset.message('FAILED', k, do_newline=True) |