From 904da8cab6c1cd4561dc2c4a4f132918c48c367c Mon Sep 17 00:00:00 2001
From: Craig Tiller <ctiller@google.com>
Date: Thu, 26 Feb 2015 15:59:15 -0800
Subject: [PATCH] Fix sorting

---
 tools/run_tests/jobset.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/run_tests/jobset.py b/tools/run_tests/jobset.py
index 7e1faa7b94..e40235341c 100755
--- a/tools/run_tests/jobset.py
+++ b/tools/run_tests/jobset.py
@@ -292,7 +292,7 @@ def run(cmdlines,
   if not travis:
     cmdlines = shuffle_iteratable(cmdlines)
   else:
-    cmdlines = sorted(cmdlines)
+    cmdlines = sorted(cmdlines, key=lambda x: x.shortname)
   for cmdline in cmdlines:
     if not js.start(cmdline):
       break
-- 
GitLab