Home
last modified time | relevance | path

Searched refs:subPlan (Results 1 – 9 of 9) sorted by relevance

/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
DSubPlanHelper.java155 ISubPlan subPlan = new SubPlan(); in getSubPlanByName() local
156 subPlan.parse(subPlanInputStream); in getSubPlanByName()
157 return subPlan; in getSubPlanByName()
191 ISubPlan subPlan = createSubPlan(buildHelper); in createAndSerializeSubPlan() local
192 if (subPlan != null) { in createAndSerializeSubPlan()
194 subPlan.serialize(new BufferedOutputStream(new FileOutputStream(mSubPlanFile))); in createAndSerializeSubPlan()
217 ISubPlan subPlan = new SubPlan(); in createSubPlan() local
220 subPlan.addAllIncludeFilters(mIncludeFilters); in createSubPlan()
221 subPlan.addAllExcludeFilters(mExcludeFilters); in createSubPlan()
224 subPlan.addAllIncludeFilters(lastSubPlan.getIncludeFilters()); in createSubPlan()
[all …]
/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/
DSubPlanTest.java54 ISubPlan subPlan = new SubPlan(); in testSerialization() local
55 subPlan.addIncludeFilter(new TestFilter(ABI, MODULE_A, TEST_1).toString()); in testSerialization()
59subPlan.addAllIncludeFilters(includeFilterSet); // add multiple include filters simultaneously in testSerialization()
60 subPlan.addIncludeFilter(new TestFilter(null, MODULE_B, null).toString()); in testSerialization()
61 subPlan.addExcludeFilter(new TestFilter(null, MODULE_B, TEST_1).toString()); in testSerialization()
65 subPlan.addAllExcludeFilters(excludeFilterSet); in testSerialization()
71 subPlan.serialize(subPlanOutputStream); in testSerialization()
108 ISubPlan subPlan = new SubPlan(); in checkSubPlan() local
109 subPlan.parse(subPlanInputStream); in checkSubPlan()
110 Set<String> subPlanIncludes = subPlan.getIncludeFilters(); in checkSubPlan()
[all …]
/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/result/
DSubPlanHelperTest.java128 ISubPlan subPlan = new SubPlan(); in testAddInclude() local
130 SubPlanHelper.addIncludeToSubPlan(subPlan, tf); in testAddInclude()
131 Set<String> includes = subPlan.getIncludeFilters(); in testAddInclude()
136 ISubPlan subPlan = new SubPlan(); in testAddExclude() local
138 SubPlanHelper.addExcludeToSubPlan(subPlan, tf); in testAddExclude()
139 Set<String> excludes = subPlan.getExcludeFilters(); in testAddExclude()
144 ISubPlan subPlan = new SubPlan(); in testAddParameterizedInclude() local
149 SubPlanHelper.addIncludeToSubPlan(subPlan, filterWithSuffix); in testAddParameterizedInclude()
150 Set<String> includes = subPlan.getIncludeFilters(); in testAddParameterizedInclude()
155 ISubPlan subPlan = new SubPlan(); in testAddParameterizedExclude() local
[all …]
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/suite/
DCompatibilityTestSuite.java127 ISubPlan subPlan = new SubPlan(); in setupFilters() local
128 subPlan.parse(subPlanInputStream); in setupFilters()
130 setIncludeFilter(subPlan.getIncludeFilters()); in setupFilters()
131 setExcludeFilter(subPlan.getExcludeFilters()); in setupFilters()
/test/vts/harnesses/tradefed/src/com/android/compatibility/common/tradefed/util/
DVtsRetryFilterHelper.java47 public VtsRetryFilterHelper(CompatibilityBuildHelper build, int sessionId, String subPlan, in VtsRetryFilterHelper() argument
50 super(build, sessionId, subPlan, includeFilters, excludeFilters, abiName, moduleName, in VtsRetryFilterHelper()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
DRetryFilterHelper.java86 public RetryFilterHelper(CompatibilityBuildHelper build, int sessionId, String subPlan, in RetryFilterHelper() argument
90 mSubPlan = subPlan; in RetryFilterHelper()
/test/framework/harnesses/cts-tradefed/
Dtradefed-cts-prebuilt.jarMETA-INF/ META-INF/MANIFEST.MF com/android/compatibility/common/ ...
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
DCompatibilityTest.java754 ISubPlan subPlan = SubPlanHelper.getSubPlanByName(mBuildHelper, mSubPlan); in setupFilters() local
755 mIncludeFilters.addAll(subPlan.getIncludeFilters()); in setupFilters()
756 mExcludeFilters.addAll(subPlan.getExcludeFilters()); in setupFilters()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/command/
DCompatibilityConsole.java490 for (String subPlan : subPlans) { in listSubPlans()
491 printLine(subPlan); in listSubPlans()