Home
last modified time | relevance | path

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

/tools/tradefederation/contrib/src/com/android/tradefed/presubmit/
DTestMappingsValidation.java81 private Map<String, Set<TestInfo>> allTests = null; field in TestMappingsValidation
106 allTests = TestMapping.getAllTests(testMappingsDir); in setUp()
121 for (String testGroup : allTests.keySet()) { in testTestSuiteSetting()
126 for (TestInfo testInfo : allTests.get(testGroup)) { in testTestSuiteSetting()
148 for (String testGroup : allTests.keySet()) { in testFilterOptions()
286 for (TestInfo test: allTests.get(testGroup)) { in getModuleNames()
301 for(TestInfo test : allTests.get(testGroup)) { in getTestInfos()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/testmapping/
DTestMappingTest.java420 Map<String, Set<TestInfo>> allTests = TestMapping.getAllTests(tempDir); in testGetAllTests() local
421 Set<TestInfo> tests = allTests.get("presubmit"); in testGetAllTests()
424 tests = allTests.get("postsubmit"); in testGetAllTests()
427 tests = allTests.get("othertype"); in testGetAllTests()
460 Map<String, Set<TestInfo>> allTests = TestMapping.getAllTests(tempDir); in testExtractTestMappingsZip() local
461 Set<TestInfo> tests = allTests.get("presubmit"); in testExtractTestMappingsZip()
464 tests = allTests.get("postsubmit"); in testExtractTestMappingsZip()
467 tests = allTests.get("othertype"); in testExtractTestMappingsZip()
/tools/tradefederation/core/src/com/android/tradefed/invoker/shard/
DStrictShardHelper.java82 List<IRemoteTest> allTests = new ArrayList<>(); in getAllTests() local
108 allTests.add(test); in getAllTests()
110 allTests.addAll(subTests); in getAllTests()
114 allTests.add(test); in getAllTests()
117 return allTests; in getAllTests()
/tools/tradefederation/core/src/com/android/tradefed/util/testmapping/
DTestMapping.java274 Map<String, Set<TestInfo>> allTests = new HashMap<String, Set<TestInfo>>(); in getAllTests() local
282 getAllTests(allTests, path, testMappingsRootPath)); in getAllTests()
294 return allTests; in getAllTests()
354 private static void getAllTests(Map<String, Set<TestInfo>> allTests, in getAllTests() argument
359 allTests.computeIfAbsent(group, k -> new HashSet<>()).addAll(testCollection.get(group)); in getAllTests()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DGTestFuncTest.java66 String[][] allTests = { in testRun() local
75 for (String[] test : allTests) { in testRun()