HomeSort by relevance Sort by last modified time
    Searched defs:subPlan (Results 1 - 5 of 5) sorted by null

  /cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/
SubPlanTest.java 45 "<SubPlan version=\"2.0\">\n" +
47 "</SubPlan>";
52 ISubPlan subPlan = new SubPlan();
53 subPlan.addIncludeFilter(new TestFilter(ABI, MODULE_A, TEST_1).toString());
57 subPlan.addAllIncludeFilters(includeFilterSet); // add multiple include filters simultaneously
58 subPlan.addIncludeFilter(new TestFilter(null, MODULE_B, null).toString());
59 subPlan.addExcludeFilter(new TestFilter(null, MODULE_B, TEST_1).toString());
63 subPlan.addAllExcludeFilters(excludeFilterSet);
66 File subPlanFile = FileUtil.createTempFile("test-subPlan-serialization", ".txt")
    [all...]
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
SubPlanCreator.java 21 import com.android.compatibility.common.tradefed.testtype.SubPlan;
68 @Option (name = "name", shortName = 'n', description = "the name of the subplan to create",
128 * Set the result from which to derive the subplan.
136 * Add a result type from which to derive the subplan. PASSED, FAILED, or NOT_EXECUTED
144 * Create and serialize a subplan derived from a result.
147 * @return serialized subplan file.
152 ISubPlan subPlan = createSubPlan(buildHelper);
153 if (subPlan != null) {
155 subPlan.serialize(new BufferedOutputStream(new FileOutputStream(mSubPlanFile)));
156 CLog.logAndDisplay(LogLevel.INFO, "Created subplan \"%s\" at %s"
    [all...]
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
CompatibilityTest.java 88 private static final String SUBPLAN_OPTION = "subplan";
118 description = "the subplan to run",
648 throw new RuntimeException ("Failed to create subplan for retry", e);
656 String.format("Could not retrieve subplan \"%s\"", mSubPlan));
659 ISubPlan subPlan = new SubPlan();
660 subPlan.parse(subPlanInputStream);
661 mIncludeFilters.addAll(subPlan.getIncludeFilters());
662 mExcludeFilters.addAll(subPlan.getExcludeFilters());
665 String.format("Unable to find or parse subplan %s", mSubPlan), e)
    [all...]
  /prebuilts/sdk/tools/jills/
jill-3.36.CANDIDATE.jar 
jill-4.7.BETA.jar 

Completed in 676 milliseconds