| Index: test/cctest/testcfg.py
|
| diff --git a/test/cctest/testcfg.py b/test/cctest/testcfg.py
|
| index 0e9a128b52a9ac9e173b1f52ad48fa4332365d6e..36db837c6c7ce766cc43cdc44dd3f595223934c4 100644
|
| --- a/test/cctest/testcfg.py
|
| +++ b/test/cctest/testcfg.py
|
| @@ -58,7 +58,7 @@ class CcTestSuite(testsuite.TestSuite):
|
| for test_desc in output.stdout.strip().split():
|
| test = testcase.TestCase(self, test_desc)
|
| tests.append(test)
|
| - tests.sort()
|
| + tests.sort(key=lambda t: t.path)
|
| return tests
|
|
|
| def GetFlagsForTestCase(self, testcase, context):
|
|
|