Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/com/android/tradefed/util/
DModuleTestTypeUtilTest.java88 boolean isPerformanceModule = in testPositivePerformanceTestTypeMatching()
89 ModuleTestTypeUtil.isPerformanceModule(mMockPerformanceModule); in testPositivePerformanceTestTypeMatching()
91 assertTrue(isPerformanceModule); in testPositivePerformanceTestTypeMatching()
96 boolean isPerformanceModule = in testNegativePerformanceTestTypeMatching()
97 ModuleTestTypeUtil.isPerformanceModule(mMockUnspecifiedModule); in testNegativePerformanceTestTypeMatching()
99 assertFalse(isPerformanceModule); in testNegativePerformanceTestTypeMatching()
/tools/tradefederation/core/src/com/android/tradefed/util/
DModuleTestTypeUtil.java38 public static boolean isPerformanceModule(IConfiguration config) { in isPerformanceModule() method in ModuleTestTypeUtil
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DValidateSuiteConfigHelper.java124 if (!ModuleTestTypeUtil.isPerformanceModule(config)) { in validateConfig()
/tools/tradefederation/core/javatests/com/android/tradefed/presubmit/
DGeneralTestsConfigValidation.java409 boolean isPerfModule = ModuleTestTypeUtil.isPerformanceModule(c); in validatePreparers()
DTestMappingsValidation.java482 if (ModuleTestTypeUtil.isPerformanceModule(config)) { in testNoPerformanceTests()