Home
last modified time | relevance | path

Searched refs:allTests (Results 1 – 6 of 6) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/presubmit/
DTestMappingsValidation.java99 private Map<String, Set<TestInfo>> allTests = null; field in TestMappingsValidation
125 allTests = TestMapping.getAllTests(testMappingsDir); in setUp()
140 for (String testGroup : allTests.keySet()) { in testValidTestMappingForParameterizedMainlineModules()
145 for (TestInfo testInfo : allTests.get(testGroup)) { in testValidTestMappingForParameterizedMainlineModules()
221 for (String testGroup : allTests.keySet()) { in testTestSuiteSetting()
226 for (TestInfo testInfo : allTests.get(testGroup)) { in testTestSuiteSetting()
248 for (String testGroup : allTests.keySet()) { in testFilterOptions()
433 for (TestInfo test : allTests.get(testGroup)) { in getModuleNames()
448 for (TestInfo test : allTests.get(testGroup)) { in getTestInfos()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/testmapping/
DTestMappingTest.java510 Map<String, Set<TestInfo>> allTests = TestMapping.getAllTests(tempDir); in testGetAllTests() local
511 Set<TestInfo> tests = allTests.get("presubmit"); in testGetAllTests()
514 tests = allTests.get("postsubmit"); in testGetAllTests()
517 tests = allTests.get("othertype"); in testGetAllTests()
550 Map<String, Set<TestInfo>> allTests = TestMapping.getAllTests(tempDir); in testExtractTestMappingsZip() local
551 Set<TestInfo> tests = allTests.get("presubmit"); in testExtractTestMappingsZip()
554 tests = allTests.get("postsubmit"); in testExtractTestMappingsZip()
557 tests = allTests.get("othertype"); in testExtractTestMappingsZip()
/tools/tradefederation/core/src/com/android/tradefed/invoker/shard/
DStrictShardHelper.java89 List<IRemoteTest> allTests = new ArrayList<>(); in getAllTests() local
116 allTests.add(test); in getAllTests()
118 allTests.addAll(subTests); in getAllTests()
122 allTests.add(test); in getAllTests()
125 return allTests; in getAllTests()
/tools/tradefederation/core/src/com/android/tradefed/util/testmapping/
DTestMapping.java348 Map<String, Set<TestInfo>> allTests = new HashMap<String, Set<TestInfo>>(); in getAllTests() local
356 getAllTests(allTests, path, testMappingsRootPath)); in getAllTests()
368 return allTests; in getAllTests()
428 private static void getAllTests(Map<String, Set<TestInfo>> allTests, in getAllTests() argument
433 allTests.computeIfAbsent(group, k -> new HashSet<>()).addAll(testCollection.get(group)); in getAllTests()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DTestMappingSuiteRunner.java172 List<IRemoteTest> allTests = new ArrayList<>(); in loadTests() local
182 allTests.addAll(createIndividualTests(testInfos, configPath, abi)); in loadTests()
183 if (!allTests.isEmpty()) { in loadTests()
185 moduleConfig.setTests(allTests); in loadTests()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DGTestFuncTest.java69 String[][] allTests = { in testRun() local
78 for (String[] test : allTests) { in testRun()