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

  /cts/tests/core/runner/src/com/android/cts/core/runner/
TestFilter.java 26 import vogar.ExpectationStore;
66 private final ExpectationStore expectationStore;
70 public TestFilter(TestList testList, @Nullable ExpectationStore expectationStore) {
71 this.expectationStore = expectationStore;
91 if (expectationStore != null) {
92 Expectation expectation = expectationStore.get(testName);
CoreTestRunner.java 51 import vogar.ExpectationStore;
98 private ExpectationStore expectationStore;
134 expectationStore = ExpectationStore.parseResources(
137 Log.e(TAG, "Could not initialize ExpectationStore: ", e);
264 Filter filter = new TestFilter(testList, expectationStore);
  /external/vogar/src/vogar/
Run.java 63 public final ExpectationStore expectationStore;
174 expectationStore = ExpectationStore.parse(
177 expectationStore.loadBugStatuses(new CommandBugDatabase(log, vogar.openBugsCommand));
193 this.reportPrinter = new XmlReportPrinter(xmlReportsDirectory, expectationStore, date);
196 expectationStore, date);
OutcomeStore.java 54 private final ExpectationStore expectationStore;
58 ExpectationStore expectationStore, Date date) {
64 this.expectationStore = expectationStore;
72 Expectation expectation = expectationStore.get(outcome);
XmlReportPrinter.java 48 private final ExpectationStore expectationStore;
51 public XmlReportPrinter(File directory, ExpectationStore expectationStore, Date date) {
53 this.expectationStore = expectationStore;
104 Expectation expectation = expectationStore.get(outcome);
151 Expectation expectation = expectationStore.get(outcome);
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
XmlGenerator.java 20 import vogar.ExpectationStore;
77 /** ExpectationStore to filter out known failures. */
78 private final ExpectationStore mKnownFailures;
80 /** ExpectationStore to filter out unsupported abis. */
81 private final ExpectationStore mUnsupportedAbis;
87 XmlGenerator(ExpectationStore knownFailures, ExpectationStore unsupportedAbis,
237 public static boolean isKnownFailure(ExpectationStore expectationStore, String testName) {
238 return expectationStore != nul
    [all...]

Completed in 65 milliseconds