HomeSort by relevance Sort by last modified time
    Searched refs:ExpectationStore (Results 1 - 7 of 7) sorted by null

  /cts/tools/utils/
VogarUtils.java 20 import vogar.ExpectationStore;
32 public static boolean isVogarKnownFailure(ExpectationStore[] expectationStores,
35 for (ExpectationStore expectationStore : expectationStores) {
36 if (isVogarKnownFailure(expectationStore, testClassName, testMethodName)) {
47 public static boolean isVogarKnownFailure(ExpectationStore expectationStore,
50 if (expectationStore == null) {
54 Expectation expectation = expectationStore.get(fullTestName);
65 public static ExpectationStore provideExpectationStore(String dir) throws IOException
    [all...]
CollectAllTests.java 25 import vogar.ExpectationStore;
159 ExpectationStore libcoreVogarExpectationStore;
160 ExpectationStore ctsVogarExpectationStore;
173 ExpectationStore[] expectations = new ExpectationStore[] {
366 private static void addToTests(ExpectationStore[] expectations,
402 private static void addToTests(ExpectationStore[] expectations,
DescriptionGenerator.java 41 import vogar.ExpectationStore;
134 ExpectationStore ctsExpectationStore = null;
527 TestClass(ClassDoc clazz, ExpectationStore expectationStore, String architecture) {
529 mCases = getTestMethods(expectationStore, architecture, clazz);
538 Collection<TestMethod> getTestMethods(ExpectationStore expectationStore,
567 if (VogarUtils.isVogarKnownFailure(expectationStore, clazz.toString(), name)) {
572 Expectation expectation = expectationStore.get(
  /cts/common/host-side/xml-plan-generator/src/com/android/compatibility/common/xmlgenerator/
XmlPlanGenerator.java 26 import vogar.ExpectationStore;
47 private final ExpectationStore mExpectations;
58 private XmlPlanGenerator(ExpectationStore expectations, String appNameSpace,
163 public static boolean isKnownFailure(ExpectationStore store, String fullname) {
195 final ExpectationStore store = ExpectationStore.parse(expectationFiles, ModeId.DEVICE);
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
XmlGenerator.java 22 import vogar.ExpectationStore;
76 /** ExpectationStore to filter out known failures. */
77 private final ExpectationStore mKnownFailures;
79 /** ExpectationStore to filter out unsupported abis. */
80 private final ExpectationStore mUnsupportedAbis;
86 XmlGenerator(ExpectationStore knownFailures, ExpectationStore unsupportedAbis,
230 public static boolean isKnownFailure(ExpectationStore expectationStore, String testName) {
231 return expectationStore != null && expectationStore.get(testName) != Expectation.SUCCESS
    [all...]
CtsXmlGenerator.java 22 import vogar.ExpectationStore;
128 ExpectationStore failuresStore = ExpectationStore.parse(expectationFiles, ModeId.DEVICE);
129 ExpectationStore abiStore = ExpectationStore.parse(abiFiles, ModeId.DEVICE);
  /cts/libs/vogar-expect/src/vogar/
ExpectationStore.java 52 public final class ExpectationStore {
57 private ExpectationStore() {}
109 public static ExpectationStore parse(Set<File> expectationFiles, ModeId mode) throws IOException {
110 ExpectationStore result = new ExpectationStore();

Completed in 187 milliseconds