Home
last modified time | relevance | path

Searched refs:expectation (Results 1 – 25 of 42) sorted by relevance

12

/external/skia/tools/skpdiff/
Dskpdiff_server.py335 for expectation in self._expectations:
338 expectation.device_name + '-' +
339 expectation.image_name)
342 expectation.device_name + '-' +
343 expectation.image_name)
346 expectation.image_name, expectation.device_name))
349 download_gm_image(expectation.image_name,
351 expectation.expected_hash)
353 download_gm_image(expectation.image_name,
355 expectation.actual_hash)
[all …]
/external/vogar/src/vogar/
DAnnotatedOutcome.java39 private final Expectation expectation; field in AnnotatedOutcome
44 AnnotatedOutcome(Outcome outcome, Expectation expectation) { in AnnotatedOutcome() argument
45 this.expectation = expectation; in AnnotatedOutcome()
62 return outcome.getResultValue(expectation); in getResultValue()
68 previousResultValues.add(previousOutcome.getResultValue(expectation)); in getPreviousResultValues()
DExpectationStore.java95 Expectation expectation = outcomes.get(name); in getByNameOrPackage() local
96 if (expectation != null) { in getByNameOrPackage()
97 return expectation; in getByNameOrPackage()
207 Expectation expectation = in readExpectation() local
211 if (map.put(name, expectation) != null) { in readExpectation()
267 for (Expectation expectation : allExpectations) { in loadBugStatuses()
268 if (expectation.getBug() != -1) { in loadBugStatuses()
269 bugs.add(expectation.getBug()); in loadBugStatuses()
281 for (Expectation expectation : allExpectations) { in loadBugStatuses()
282 if (openBugs.contains(expectation.getBug())) { in loadBugStatuses()
[all …]
DXmlReportPrinter.java104 Expectation expectation = expectationStore.get(outcome); in testsToSuites() local
105 if (!expectation.matches(outcome)) { in testsToSuites()
151 Expectation expectation = expectationStore.get(outcome); in print() local
152 if (!expectation.matches(outcome)) { in print()
DDriver.java149 Expectation expectation = run.expectationStore.get(action.getName()); in enqueueActionTasks() local
150 boolean useLargeTimeout = expectation.getTags().contains("large"); in enqueueActionTasks()
221 Expectation expectation = run.expectationStore.get(outcome); in recordOutcome() local
222 ResultValue resultValue = outcome.getResultValue(expectation); in recordOutcome()
236 run.console.printResult(outcome.getName(), result, resultValue, expectation); in recordOutcome() local
DOutcome.java136 public ResultValue getResultValue(Expectation expectation) { in getResultValue() argument
138 if (expectation.matches(this)) { in getResultValue()
140 } else if (expectation.getIsFromExpectationFile()) { in getResultValue()
DConsole.java157 String outcomeName, Result result, ResultValue resultValue, Expectation expectation) { in printResult() argument
160 if (!expectation.getDescription().isEmpty()) { in printResult()
161 … streamOutput(outcomeName, "\n" + colorString(expectation.getDescription(), Color.COMMENT)); in printResult()
163 if (expectation.getBug() != -1) { in printResult()
164 … streamOutput(outcomeName, "\n" + colorString("http://b/" + expectation.getBug(), Color.COMMENT)); in printResult()
DOutcomeStore.java72 Expectation expectation = expectationStore.get(outcome); in read() local
73 result.put(entry.getKey(), new AnnotatedOutcome(outcome, expectation)); in read()
/external/android-mock/src/com/google/android/testing/mocking/
DAndroidMock.java1509 public static boolean not(boolean expectation) { in not() argument
1510 return EasyMock.not(expectation); in not()
1534 public static byte not(byte expectation) { in not() argument
1535 return EasyMock.not(expectation); in not()
1558 public static char not(char expectation) { in not() argument
1559 return EasyMock.not(expectation); in not()
1583 public static double not(double expectation) { in not() argument
1584 return EasyMock.not(expectation); in not()
1608 public static float not(float expectation) { in not() argument
1609 return EasyMock.not(expectation); in not()
[all …]
/external/chromium-libpac/test/js-unittest/
Dbindings.js13 function expectEquals(expectation, actual) { argument
14 if (!(expectation === actual)) {
15 throw "FAIL: expected: " + expectation + ", actual: " + actual;
Dpac_library_unittest.js290 TestContext.prototype.expectEquals = function(expectation, actual) { argument
291 if (!(expectation === actual)) {
293 this.log("FAIL: expected: " + expectation + ", actual: " + actual);
/external/google-breakpad/src/testing/test/
Dgmock_output_test_golden.txt36 Google Mock tried the following 1 expectation, but it didn't match:
49 Google Mock tried the following 1 expectation, but it didn't match:
95 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(_, _))...
96 Expected: the expectation is active
100 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(0, 0))...
116 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(0, 0))...
121 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(1, _))...
137 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(0, 0))...
142 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(1, _))...
174 Google Mock tried the following 1 expectation, but it didn't match:
[all …]
/external/v8/test/preparser/
Dduplicate-parameter.pyt37 expectation = "strict_param_dupe"
40 Template(name, '"use strict";\n' + source)(non_selfstrict, expectation)
43 non_selfstrict, expectation)
46 source +'\n }\n}\n')(non_selfstrict, expectation)
56 selftest(selfstrict, expectation)
57 selftest(selfstrictnestedclean, expectation)
Dtestcfg.py62 def Test(name, source, expectation): argument
66 if expectation:
71 def MkTest(replacement, expectation): argument
77 Test(testname, testsource, expectation)
Dstrict-identifiers.pyt74 def MakeTests(replacement, expectation):
75 Template(name, '"use strict";\n' + source)(replacement, expectation)
78 replacement, expectation)
81 source +'\n }\n}\n')(replacement, expectation)
/external/v8/test/mjsunit/regress/
Dregress-phi-truncation.js30 function test(fun, expectation) { argument
33 assertEquals(expectation, fun(0));
/external/skia/tools/
Dimage_expectations.cpp167 Expectation expectation = this->getExpectation(sourceName, tileNumber); in add() local
179 if (expectation.empty()) { in add()
181 } else if (expectation.matches(digest)) { in add()
183 } else if (expectation.ignoreFailure()) { in add()
/external/v8/test/mjsunit/
Ddebug-evaluate-const.js84 var expectation = { "const0" : 0, variable
93 assertEquals(expectation[name], value);
/external/skia/bench/
Dcheck_bench_regressions.py110 for expectation in open(filename).readlines():
111 elements = expectation.strip().split(',')
116 expectation)
/external/google-breakpad/src/testing/include/gmock/
Dgmock-spec-builders.h618 void AddExpectation(const Expectation& expectation) const;
1535 TypedExpectation<F>* const expectation = in AddNewExpectation() local
1537 const linked_ptr<ExpectationBase> untyped_expectation(expectation); in AddNewExpectation()
1546 return *expectation; in AddNewExpectation()
1682 TypedExpectation<F>* const expectation = in PrintTriedExpectationsLocked() local
1685 expectation->DescribeLocationTo(why); in PrintTriedExpectationsLocked()
1689 *why << expectation->source_text() << "...\n"; in PrintTriedExpectationsLocked()
1690 expectation->ExplainMatchResultTo(args, why); in PrintTriedExpectationsLocked()
1691 expectation->DescribeCallCountTo(why); in PrintTriedExpectationsLocked()
/external/google-breakpad/src/testing/src/
Dgmock-spec-builders.cc784 void Sequence::AddExpectation(const Expectation& expectation) const { in AddExpectation()
785 if (*last_expectation_ != expectation) { in AddExpectation()
787 expectation.expectation_base()->immediate_prerequisites_ in AddExpectation()
790 *last_expectation_ = expectation; in AddExpectation()
/external/deqp/modules/glshared/
DglsStateQueryUtil.cpp1646 std::ostringstream expectation; in verifyFloatVec4() local
1659 expectation << " ,"; in verifyFloatVec4()
1671 …buf << "Expected {" << expectation.str() << "}, got " << tcu::formatArray(state.getIntVec4Access()… in verifyFloatVec4()
1679 std::ostringstream expectation; in verifyFloatVec4() local
1692 expectation << " ,"; in verifyFloatVec4()
1704 …buf << "Expected {" << expectation.str() << "}, got " << tcu::formatArray(state.getUintVec4Access(… in verifyFloatVec4()
1764 std::ostringstream expectation; in verifyNormalizedI32Vec4() local
1774 expectation << " ,"; in verifyNormalizedI32Vec4()
1782 …buf << "Expected {" << expectation.str() << "}, got " << tcu::formatArray(state.getFloatVec4Access… in verifyNormalizedI32Vec4()
1790 std::ostringstream expectation; in verifyNormalizedI32Vec4() local
[all …]
/external/v8/test/test262/
DREADME18 have to update the test expectation file.
/external/v8/test/test262-es6/
DREADME18 have to update the test expectation file.
/external/llvm/test/CodeGen/X86/
Dx86-upgrade-avx-vbroadcast.ll4 ; expectation is that we should still get the original instruction back that

12