Home
last modified time | relevance | path

Searched refs:test_mapping (Results 1 – 7 of 7) sorted by relevance

/development/scripts/
Dupdate_crate_tests.py317 test_mapping = self.tests_dirs_to_mapping(tests, dirs)
318 self.write_test_mapping(test_mapping)
322 test_mapping = {"imports": []}
329 test_mapping[test_group] = []
345 test_mapping[test_group].append({"name": test, "options": TEST_OPTIONS[test]})
347 test_mapping[test_group].append({"name": test})
348 test_mapping[test_group] = sorted(test_mapping[test_group], key=lambda t: t["name"])
351 test_mapping["imports"].append({"path": dir})
352 test_mapping["imports"] = sorted(test_mapping["imports"], key=lambda t: t["path"])
353 test_mapping = {section: entry for (section, entry) in test_mapping.items() if entry}
[all …]
/development/tools/external_crates/test_mapping/src/
Dlib.rs98 if self.json.is_empty() && self.test_mapping().abs().exists() { in write()
99 remove_file(self.test_mapping())?; in write()
103 write(self.test_mapping(), contents)?; in write()
165 fn test_mapping(&self) -> RootedPath { in test_mapping() method
/development/tools/external_crates/test_mapping/
DAndroid.bp13 crate_name: "test_mapping",
30 crate_name: "test_mapping",
DCargo.toml2 name = "test_mapping"
/development/tools/external_crates/crate_tool/
DCargo.toml34 test_mapping = { path = "../test_mapping" }
/development/tools/external_crates/
DCargo.toml12 "test_mapping",
/development/tools/external_crates/crate_tool/src/
Dmanaged_crate.rs33 use test_mapping::TestMapping;