Home
last modified time | relevance | path

Searched refs:RunStrategy (Results 1 – 7 of 7) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/module/
DNativeBridgeModuleControllerTest.java27 import com.android.tradefed.testtype.suite.module.IModuleController.RunStrategy;
59 assertEquals(RunStrategy.RUN, mController.shouldRunModule(mContext)); in testStubDevice()
70 assertEquals(RunStrategy.RUN, mController.shouldRunModule(mContext)); in testNoBridgeSupport()
86 assertEquals(RunStrategy.RUN, mController.shouldRunModule(mContext)); in testBridgeSupport()
102 assertEquals(RunStrategy.RUN, mController.shouldRunModule(mContext)); in testBridgeSupport_differentBitness()
118 assertEquals(RunStrategy.FULL_MODULE_BYPASS, mController.shouldRunModule(mContext)); in testBridgeSupport_differentArch()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/module/
DTestFailureModuleController.java27 public RunStrategy shouldRun(IInvocationContext context) { in shouldRun()
28 return RunStrategy.RUN; in shouldRun()
DIModuleController.java24 public enum RunStrategy { enum
39 public RunStrategy shouldRunModule(IInvocationContext context); in shouldRunModule()
DNativeBridgeModuleController.java36 public RunStrategy shouldRun(IInvocationContext context) { in shouldRun()
59 return RunStrategy.FULL_MODULE_BYPASS; in shouldRun()
65 return RunStrategy.RUN; in shouldRun()
DBaseModuleController.java52 public final RunStrategy shouldRunModule(IInvocationContext context) { in shouldRunModule()
63 public abstract RunStrategy shouldRun(IInvocationContext context); in shouldRun()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DModuleDefinition.java55 import com.android.tradefed.testtype.suite.module.IModuleController.RunStrategy;
291 RunStrategy rs = applyConfigurationControl(failureListener); in run()
292 if (RunStrategy.FULL_MODULE_BYPASS.equals(rs)) { in run()
295 } else if (RunStrategy.SKIP_MODULE_TESTCASES.equals(rs)) { in run()
727 private RunStrategy applyConfigurationControl(TestFailureListener failureListener) { in applyConfigurationControl()
740 return RunStrategy.RUN; in applyConfigurationControl()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
DModuleDefinitionTest.java465 public RunStrategy shouldRun(IInvocationContext context) { in testModuleController_fullBypass()
466 return RunStrategy.FULL_MODULE_BYPASS; in testModuleController_fullBypass()
508 public RunStrategy shouldRun(IInvocationContext context) { in testModuleController_skipTestCases()
509 return RunStrategy.SKIP_MODULE_TESTCASES; in testModuleController_skipTestCases()