Lines Matching defs:expected

76 bool checkIntEquals (tcu::TestContext& testCtx, GLint got, GLint expected)
80 if (got != expected)
82 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
90 void checkPointerEquals (tcu::TestContext& testCtx, const void* got, const void* expected)
94 if (got != expected)
96 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
227 << "// ERROR: expected in range "
270 << "// ERROR: expected ["
296 << "// ERROR: expected ["
325 << "// ERROR: expected ["
357 << "// ERROR: expected ["
388 << "// ERROR: expected ["
414 << "// ERROR: expected ["
443 << "// ERROR: expected ["
475 << "// ERROR: expected ["
506 << "// ERROR: expected ["
532 << "// ERROR: expected ["
561 << "// ERROR: expected ["
593 << "// ERROR: expected ["
626 testCtx.getLog() << TestLog::Message << "// ERROR: at index " << ndx << " expected " << values[ndx] << "; got " << state[ndx] << TestLog::EndMessage;
653 testCtx.getLog() << TestLog::Message << "// ERROR: at index [" << y << "][" << x << "] expected " << values[refIndex] << "; got " << state[stateIndex] << TestLog::EndMessage;
3578 const RequiredFormat expected = getRequiredFormat();
3606 if (range[0] != expected.negativeRange ||
3607 range[1] != expected.positiveRange ||
3608 precision != expected.precision)
3612 << "// ERROR: Invalid precision format, expected:\n"
3613 << "\trange[0] = " << expected.negativeRange << "\n"
3614 << "\trange[1] = " << expected.positiveRange << "\n"
3615 << "\tprecision = " << expected.precision
3622 if (range[0] < expected.negativeRange)
3624 m_log << tcu::TestLog::Message << "// ERROR: Invalid range[0], expected greater or equal to " << expected.negativeRange << tcu::TestLog::EndMessage;
3628 if (range[1] < expected.positiveRange)
3630 m_log << tcu::TestLog::Message << "// ERROR: Invalid range[1], expected greater or equal to " << expected.positiveRange << tcu::TestLog::EndMessage;
3634 if (precision < expected.precision)
3636 m_log << tcu::TestLog::Message << "// ERROR: Invalid precision, expected greater or equal to " << expected.precision << tcu::TestLog::EndMessage;