Home
last modified time | relevance | path

Searched refs:expectationStore (Results 1 – 5 of 5) sorted by relevance

/cts/tools/utils/
DVogarUtils.java36 for (ExpectationStore expectationStore : expectationStores) { in isVogarKnownFailure()
37 if (isVogarKnownFailure(expectationStore, testClassName, testMethodName)) { in isVogarKnownFailure()
48 public static boolean isVogarKnownFailure(ExpectationStore expectationStore, in isVogarKnownFailure() argument
51 if (expectationStore == null) { in isVogarKnownFailure()
55 Expectation expectation = expectationStore.get(fullTestName); in isVogarKnownFailure()
125 for (ExpectationStore expectationStore : expectationStores) { in extractSupportedAbis()
126 Expectation expectation = expectationStore.get(fullTestName); in extractSupportedAbis()
141 for (ExpectationStore expectationStore : expectationStores) { in timeoutInMinutes()
143 timeoutInMinutes(expectationStore, in timeoutInMinutes()
154 public static int timeoutInMinutes(ExpectationStore expectationStore, in timeoutInMinutes() argument
[all …]
DDescriptionGenerator.java532 TestClass(ClassDoc clazz, ExpectationStore expectationStore, String architecture) { in TestClass() argument
534 mCases = getTestMethods(expectationStore, architecture, clazz); in TestClass()
543 Collection<TestMethod> getTestMethods(ExpectationStore expectationStore, in getTestMethods() argument
572 if (VogarUtils.isVogarKnownFailure(expectationStore, clazz.toString(), name)) { in getTestMethods()
577 Expectation expectation = expectationStore.get( in getTestMethods()
/cts/tests/core/runner/src/com/android/cts/core/runner/
DTestFilter.java66 private final ExpectationStore expectationStore; field in TestFilter
70 public TestFilter(TestList testList, @Nullable ExpectationStore expectationStore) { in TestFilter() argument
71 this.expectationStore = expectationStore; in TestFilter()
91 if (expectationStore != null) { in shouldRun()
92 Expectation expectation = expectationStore.get(testName); in shouldRun()
DCoreTestRunner.java98 private ExpectationStore expectationStore; field in CoreTestRunner
134 expectationStore = ExpectationStore.parseResources( in onCreate()
264 Filter filter = new TestFilter(testList, expectationStore); in onStart()
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
DXmlGenerator.java237 public static boolean isKnownFailure(ExpectationStore expectationStore, String testName) { in isKnownFailure() argument
238 return expectationStore != null in isKnownFailure()
239 && expectationStore.get(testName).getResult() != Result.SUCCESS; in isKnownFailure()
243 public static Set<String> getSupportedAbis(ExpectationStore expectationStore, in getSupportedAbis() argument
246 if (expectationStore == null) { in getSupportedAbis()
250 removeUnsupportedAbis(expectationStore.get(className), supportedAbis); in getSupportedAbis()
251 removeUnsupportedAbis(expectationStore.get(testName), supportedAbis); in getSupportedAbis()