Searched refs:expectationStore (Results 1 – 3 of 3) sorted by relevance
/cts/tools/utils/ |
D | VogarUtils.java | 36 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 …]
|
D | DescriptionGenerator.java | 532 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/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/ |
D | XmlGenerator.java | 231 public static boolean isKnownFailure(ExpectationStore expectationStore, String testName) { in isKnownFailure() argument 232 return expectationStore != null in isKnownFailure() 233 && expectationStore.get(testName).getResult() != Result.SUCCESS; in isKnownFailure() 237 public static Set<String> getSupportedAbis(ExpectationStore expectationStore, in getSupportedAbis() argument 240 if (expectationStore == null) { in getSupportedAbis() 244 removeUnsupportedAbis(expectationStore.get(className), supportedAbis); in getSupportedAbis() 245 removeUnsupportedAbis(expectationStore.get(testName), supportedAbis); in getSupportedAbis()
|