Merge "Sort Rust TEST_MAPPING tests."

This commit is contained in:
Treehugger Robot
2021-04-06 18:35:32 +00:00
committed by Gerrit Code Review

View File

@@ -152,6 +152,7 @@ class TestMapping(object):
test_mapping["presubmit"].append({"name": test, "options": test_options[test]})
else:
test_mapping["presubmit"].append({"name": test})
test_mapping["presubmit"] = sorted(test_mapping["presubmit"], key=lambda t: t["name"])
return test_mapping
def write_test_mapping(self, test_mapping):