Lines Matching refs:expectation
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
170 return expectation.getTags().contains("large") ? 60 : 0; in timeoutInMinutes()