aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests.py
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-06-17 18:50:55 -0700
committerGravatar GitHub <noreply@github.com>2016-06-17 18:50:55 -0700
commitb6163dfb4af3bf11df6cf3f051015ec3ee4a0f68 (patch)
tree45cb97a7e0a908af236a949834bdb26451c4ae2b /tools/run_tests/run_tests.py
parent56f98620bb46560cf2cb37c409cbdf3e80986812 (diff)
parent9f5fe9ae53feacb501faf0db144db6eda2de999a (diff)
Merge pull request #6352 from ctiller/error
Unifying error handling within core
Diffstat (limited to 'tools/run_tests/run_tests.py')
-rwxr-xr-xtools/run_tests/run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index ab42c49292..9ef12c5b07 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -1235,7 +1235,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)