Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/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/javatests/com/android/tradefed/presubmit/
DTestMappingsValidation.java312 for (String testGroup : allTests.keySet()) { in testValidateTestEntry()
313 if (!mTestGroupToValidate.contains(testGroup)) { in testValidateTestEntry()
314 CLog.d("Skip checking tests with group: %s", testGroup); in testValidateTestEntry()
317 for (TestInfo testInfo : allTests.get(testGroup)) { in testValidateTestEntry()
323 if (testGroup.contains(MAINLINE)) { in testValidateTestEntry()
335 if (incompatiblePairsTracking.containsKey(testGroup)) { in testValidateTestEntry()
336 incompatiblePairsTracking.get(testGroup).add(moduleName); in testValidateTestEntry()
371 for (String testGroup : allTests.keySet()) { in testTestSuiteSetting()
372 if (!mTestGroupToValidate.contains(testGroup)) { in testTestSuiteSetting()
373 CLog.d("Skip checking tests with group: %s", testGroup); in testTestSuiteSetting()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/util/testmapping/
DTestMapping.java398 String testGroup, in getTests() argument
404 for (TestInfo test : testCollection.getOrDefault(testGroup, new HashSet<>())) { in getTests()
450 String testGroup, in getTests() argument
456 testGroup, in getTests()
483 String testGroup, in getTests() argument
512 Set<String> disabledTests = getDisabledTests(testMappingsRootPath, testGroup); in getTests()
522 testGroup, in getTests()
646 Set<String> getDisabledTests(Path testMappingsRootPath, String testGroup) { in getDisabledTests() argument
650 if (!(testGroup.equals(PRESUBMIT) && disabledPresubmitTestsFile.exists())) { in getDisabledTests()