Searched refs:expectation (Results 1 – 6 of 6) sorted by relevance
/cts/tools/utils/ |
D | VogarUtils.java | 55 Expectation expectation = expectationStore.get(fullTestName); in isVogarKnownFailure() local 56 if (expectation.getResult() == Result.SUCCESS) { in isVogarKnownFailure() 60 String description = expectation.getDescription(); in isVogarKnownFailure() 63 return expectation.getResult() != Result.SUCCESS && !foundAbi; in isVogarKnownFailure() 99 public static Set<String> extractSupportedAbis(String architecture, Expectation expectation) { in extractSupportedAbis() argument 101 if (expectation == null || expectation.getDescription().isEmpty()) { in extractSupportedAbis() 107 supportedAbiSet.removeAll(AbiUtils.parseAbiList(expectation.getDescription())); in extractSupportedAbis() 126 Expectation expectation = expectationStore.get(fullTestName); in extractSupportedAbis() local 127 supportedAbiSet.retainAll(extractSupportedAbis(architecture, expectation)); in extractSupportedAbis() 169 public static int timeoutInMinutes(Expectation expectation) { in timeoutInMinutes() argument [all …]
|
D | DescriptionGenerator.java | 577 Expectation expectation = expectationStore.get( in getTestMethods() local 580 VogarUtils.extractSupportedAbis(architecture, expectation); in getTestMethods() 581 int timeoutInMinutes = VogarUtils.timeoutInMinutes(expectation); in getTestMethods()
|
/cts/libs/vogar-expect/src/vogar/ |
D | AnnotatedOutcome.java | 38 private final Expectation expectation; field in AnnotatedOutcome 47 AnnotatedOutcome(Outcome outcome, Expectation expectation, in AnnotatedOutcome() argument 53 this.expectation = expectation; in AnnotatedOutcome() 70 return outcome.getResultValue(expectation); in getResultValue() 76 previousResultValues.add(previousOutcome.getResultValue(expectation)); in getPreviousResultValues() 100 return tagOutcome == null ? null : tagOutcome.getResultValue(expectation); in getTagResultValue()
|
D | ExpectationStore.java | 106 Expectation expectation = outcomes.get(name); in getByNameOrPackage() local 107 if (expectation != null) { in getByNameOrPackage() 108 return expectation; in getByNameOrPackage() 208 Expectation expectation = new Expectation(result, pattern, tags, description, buganizerBug); in readExpectation() local 211 if (map.put(name, expectation) != null) { in readExpectation() 244 for (Expectation expectation : allExpectations) { in loadBugStatuses() 245 if (expectation.getBug() != -1) { in loadBugStatuses() 246 bugs.add(Long.toString(expectation.getBug())); in loadBugStatuses() 266 for (Expectation expectation : allExpectations) { in loadBugStatuses() 267 if (openBugsSet.contains(expectation.getBug())) { in loadBugStatuses() [all …]
|
D | Outcome.java | 136 public ResultValue getResultValue(Expectation expectation) { in getResultValue() argument 138 return expectation.matches(this) ? ResultValue.OK : ResultValue.FAIL; in getResultValue()
|
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/ |
D | XmlGenerator.java | 249 public static void removeUnsupportedAbis(Expectation expectation, Set<String> supportedAbis) { in removeUnsupportedAbis() argument 250 if (expectation == null) { in removeUnsupportedAbis() 254 String description = expectation.getDescription(); in removeUnsupportedAbis()
|