Home
last modified time | relevance | path

Searched refs:testGroup (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/presubmit/
DTestMappingsValidation.java140 for (String testGroup : allTests.keySet()) { in testValidTestMappingForParameterizedMainlineModules()
141 if (!MAINLINE_TEST_GROUPS_TO_VALIDATE.contains(testGroup)) { in testValidTestMappingForParameterizedMainlineModules()
142 CLog.d("Check mainline group only, skip checking tests with group: %s", testGroup); in testValidTestMappingForParameterizedMainlineModules()
145 for (TestInfo testInfo : allTests.get(testGroup)) { in testValidTestMappingForParameterizedMainlineModules()
221 for (String testGroup : allTests.keySet()) { in testTestSuiteSetting()
222 if (!TEST_GROUPS_TO_VALIDATE.contains(testGroup)) { in testTestSuiteSetting()
223 CLog.d("Skip checking tests with group: %s", testGroup); in testTestSuiteSetting()
226 for (TestInfo testInfo : allTests.get(testGroup)) { in testTestSuiteSetting()
232 testInfo.getName(), testGroup, testInfo.getSources())); in testTestSuiteSetting()
248 for (String testGroup : allTests.keySet()) { in testFilterOptions()
[all …]
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/logger/
DTfObjectTrackerTest.java42 ThreadGroup testGroup = new ThreadGroup(group); in testNotTracking() local
43 Map<String, Long> metrics = logMetric(testGroup, true, CommandOptions.class); in testNotTracking()
51 ThreadGroup testGroup = new ThreadGroup(group); in testTrackingWithParents() local
52 Map<String, Long> metrics = logMetric(testGroup, true, SuiteApkInstaller.class); in testTrackingWithParents()
58 metrics = logMetric(testGroup, true, SuiteApkInstaller.class); in testTrackingWithParents()
69 ThreadGroup testGroup = new ThreadGroup(group); in testTracking() local
70 Map<String, Long> metrics = logMetric(testGroup, false, SuiteApkInstaller.class); in testTracking()
76 metrics = logMetric(testGroup, false, SuiteApkInstaller.class); in testTracking()
89 ThreadGroup testGroup = new ThreadGroup(group); in testInternalClass() local
90 Map<String, Long> metrics = logMetric(testGroup, true, TestObject.class); in testInternalClass()
[all …]
DInvocationMetricLoggerTest.java58 ThreadGroup testGroup = new ThreadGroup("unit-test-group-" + uuid); in logMetric() local
60 Thread testThread = new Thread(testGroup, runnable); in logMetric()
/tools/tradefederation/core/src/com/android/tradefed/util/testmapping/
DTestMapping.java195 String testGroup, Set<String> disabledTests, boolean hostOnly, Set<String> keywords) { in getTests() argument
198 for (TestInfo test : mTestCollection.getOrDefault(testGroup, new HashSet<>())) { in getTests()
301 IBuildInfo buildInfo, String testGroup, boolean hostOnly, Set<String> keywords) { in getTests() argument
307 Set<String> disabledTests = getDisabledTests(testMappingsRootPath, testGroup); in getTests()
320 testGroup, in getTests()
399 static Set<String> getDisabledTests(Path testMappingsRootPath, String testGroup) { in getDisabledTests() argument
403 if (!(testGroup.equals(PRESUBMIT) && disabledPresubmitTestsFile.exists())) { in getDisabledTests()