Index: tools/testrunner/local/testsuite.py |
diff --git a/tools/testrunner/local/testsuite.py b/tools/testrunner/local/testsuite.py |
index f5729be4d73d3e263ac7768610ff36c5fe620762..f43d008b220bc5baa06d9ef04b42d3bdc799f6a9 100644 |
--- a/tools/testrunner/local/testsuite.py |
+++ b/tools/testrunner/local/testsuite.py |
@@ -316,7 +316,7 @@ class GoogleTestSuite(TestSuite): |
elif test_case and test_desc: |
test = testcase.TestCase(self, test_case + test_desc) |
tests.append(test) |
- tests.sort() |
+ tests.sort(key=lambda t: t.path) |
return tests |
def GetFlagsForTestCase(self, testcase, context): |