HomeSort by relevance Sort by last modified time
    Searched refs:TestLog (Results 26 - 50 of 354) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/deqp/modules/gles3/
tes3InfoTests.cpp 61 m_testCtx.getLog() << tcu::TestLog::Message << result << tcu::TestLog::EndMessage;
84 m_testCtx.getLog() << tcu::TestLog::Message << *i << tcu::TestLog::EndMessage;
106 << tcu::TestLog::Integer("RedBits", "Red channel bits", "", QP_KEY_TAG_NONE, pf.redBits)
107 << tcu::TestLog::Integer("GreenBits", "Green channel bits", "", QP_KEY_TAG_NONE, pf.greenBits)
108 << tcu::TestLog::Integer("BlueBits", "Blue channel bits", "", QP_KEY_TAG_NONE, pf.blueBits)
109 << tcu::TestLog::Integer("AlphaBits", "Alpha channel bits", "", QP_KEY_TAG_NONE, pf.alphaBits)
110 << tcu::TestLog::Integer("DepthBits", "Depth bits", "", QP_KEY_TAG_NONE, rt.getDepthBits())
111 << tcu::TestLog::Integer("StencilBits", "Stencil bits", "", QP_KEY_TAG_NONE, rt.getStencilBits()
    [all...]
  /external/deqp/modules/gles31/
tes31InfoTests.cpp 61 m_testCtx.getLog() << tcu::TestLog::Message << result << tcu::TestLog::EndMessage;
84 m_testCtx.getLog() << tcu::TestLog::Message << *i << tcu::TestLog::EndMessage;
106 << tcu::TestLog::Integer("RedBits", "Red channel bits", "", QP_KEY_TAG_NONE, pf.redBits)
107 << tcu::TestLog::Integer("GreenBits", "Green channel bits", "", QP_KEY_TAG_NONE, pf.greenBits)
108 << tcu::TestLog::Integer("BlueBits", "Blue channel bits", "", QP_KEY_TAG_NONE, pf.blueBits)
109 << tcu::TestLog::Integer("AlphaBits", "Alpha channel bits", "", QP_KEY_TAG_NONE, pf.alphaBits)
110 << tcu::TestLog::Integer("DepthBits", "Depth bits", "", QP_KEY_TAG_NONE, rt.getDepthBits())
111 << tcu::TestLog::Integer("StencilBits", "Stencil bits", "", QP_KEY_TAG_NONE, rt.getStencilBits()
    [all...]
  /external/deqp/modules/gles3/functional/
es3fNegativeShaderApiTests.cpp 42 using tcu::TestLog;
98 m_log << TestLog::Section("", "GL_INVALID_ENUM is generated if shaderType is not an accepted value.");
101 m_log << TestLog::EndSection;
107 m_log << TestLog::Section("", "GL_INVALID_VALUE is generated if shader is not a value generated by OpenGL.");
110 m_log << TestLog::EndSection;
112 m_log << TestLog::Section("", "GL_INVALID_VALUE is generated if count is less than 0.");
116 m_log << TestLog::EndSection;
118 m_log << TestLog::Section("", "GL_INVALID_OPERATION is generated if shader is not a shader object.");
122 m_log << TestLog::EndSection;
131 m_log << TestLog::Section("", "GL_INVALID_VALUE is generated if shader is not a value generated by OpenGL.")
    [all...]
es3fApiCase.cpp 40 using tcu::TestLog;
72 m_log << TestLog::Message << "// ERROR: expected " << glu::getErrorStr(expected) << TestLog::EndMessage;
83 m_log << TestLog::Message << "// ERROR: expected " << glu::getErrorStr(expected0) << " or " << glu::getErrorStr(expected1) << TestLog::EndMessage;
93 m_log << TestLog::Message << "// ERROR: expected " << (expected ? "GL_TRUE" : "GL_FALSE") << TestLog::EndMessage;
105 m_log << TestLog::Message << "// No supported extensions available." << TestLog::EndMessage;
es3fSyncTests.cpp 38 using tcu::TestLog;
173 TestLog& log = m_testCtx.getLog();
198 log << TestLog::Message << "// Primitives drawn." << TestLog::EndMessage;
204 log << TestLog::Message << "// Sync object created." << TestLog::EndMessage;
221 log << TestLog::Message << "// Wait command glWaitSync called with GL_TIMEOUT_IGNORED." << TestLog::EndMessage;
227 log << TestLog::Message << "// glClientWaitSync return value:" << TestLog::EndMessage
    [all...]
es3fInternalFormatQueryTests.cpp 56 using tcu::TestLog;
65 m_testCtx.getLog() << TestLog::Message << "// sample counts is " << sampleCounts << TestLog::EndMessage;
84 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected sample count to be at least one; got " << sampleCount << TestLog::EndMessage;
92 m_testCtx.getLog() << TestLog::Message
94 << "got " << prevSampleCount << " at index " << (ndx - 1) << ", and " << sampleCount << " at index " << ndx << TestLog::EndMessage;
112 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected maximum value in SAMPLES (" << maximumFormatSampleCount << ") to be at least the value of MAX_SAMPLES (" << maxSamples << ")" << TestLog::EndMessage;
136 using tcu::TestLog;
    [all...]
  /external/deqp/modules/egl/
teglSyncTests.cpp 50 using tcu::TestLog;
268 TestLog& log = m_testCtx.getLog();
271 log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << TestLog::EndMessage;
288 TestLog& log = m_testCtx.getLog();
295 log << TestLog::Message << m_sync << " = eglCreateSyncKHR(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", { EGL_NONE })" << TestLog::EndMessage;
311 TestLog& log = m_testCtx.getLog();
314 log << TestLog::Message << m_sync << " = eglCreateSyncKHR(EGL_NO_DISPLAY, " << getSyncTypeName(m_syncType) << ", NULL)" << TestLog::EndMessage
    [all...]
teglQueryConfigTests.cpp 45 using tcu::TestLog;
48 static void logConfigAttribute (TestLog& log, EGLenum attrib, EGLint value)
50 log << TestLog::Message << " " << eglu::getConfigAttribName(attrib) << ": " << eglu::getConfigAttribValueStr(attrib, value) << TestLog::EndMessage;
105 tcu::TestLog& log = m_testCtx.getLog();
120 log << TestLog::Message << numConfigReturned << " configs returned" << TestLog::EndMessage;
135 log << TestLog::Message << numOverwritten << " values actually written" << TestLog::EndMessage;
139 log << TestLog::Message << "Fail, more configs returned than requested." << TestLog::EndMessage
    [all...]
teglQueryContextTests.cpp 53 using tcu::TestLog;
98 TestLog& log = m_testCtx.getLog();
111 log << TestLog::Message << " Pass" << TestLog::EndMessage;
115 log << TestLog::Message << " Fail, got EGL_NO_CONTEXT" << TestLog::EndMessage;
120 log << TestLog::Message << " Fail, call returned the wrong context. Expected: " << tcu::toHex(context) << ", got: " << tcu::toHex(gotContext) << TestLog::EndMessage;
140 TestLog& log = m_testCtx.getLog();
156 log << TestLog::Message << " Pass" << TestLog::EndMessage
    [all...]
teglApiCase.cpp 36 using tcu::TestLog;
90 m_testCtx.getLog() << TestLog::Message << "// ERROR expected: " << eglu::getErrorStr(expected) << ", Got: " << eglu::getErrorStr(err) << TestLog::EndMessage;
101 m_testCtx.getLog() << TestLog::Message << "// ERROR expected: " << eglu::getErrorStr(expectedA) << " or " << eglu::getErrorStr(expectedB) << ", Got: " << eglu::getErrorStr(err) << TestLog::EndMessage;
111 m_testCtx.getLog() << TestLog::Message << "// ERROR expected: " << eglu::getBooleanStr(expected) << ", Got: " << eglu::getBooleanStr(got) << TestLog::EndMessage;
121 m_testCtx.getLog() << TestLog::Message << "// ERROR expected: EGL_NO_CONTEXT" << TestLog::EndMessage;
132 m_testCtx.getLog() << TestLog::Message << "// ERROR expected: EGL_NO_SURFACE" << TestLog::EndMessage
    [all...]
teglQuerySurfaceTests.cpp 53 using tcu::TestLog;
56 static void logSurfaceAttribute (tcu::TestLog& log, EGLint attribute, EGLint value)
61 log << TestLog::Message << " " << name << ": " << valueFmt << TestLog::EndMessage;
64 static void logSurfaceAttributes (tcu::TestLog& log, const Library& egl, EGLDisplay display, EGLSurface surface, const EGLint* attributes, int numAttribs)
70 static void logCommonSurfaceAttributes (tcu::TestLog& log, const Library& egl, EGLDisplay display, EGLSurface surface)
90 static void logPbufferSurfaceAttributes (tcu::TestLog& log, const Library& egl, EGLDisplay display, EGLSurface surface)
121 tcu::TestLog& log = m_testCtx.getLog();
131 log << TestLog::Message << " Fail, config ID " << id << " does not match the one used to create the surface" << TestLog::EndMessage
    [all...]
teglGetProcAddressTests.cpp 43 using tcu::TestLog;
174 TestLog& log = m_testCtx.getLog();
180 log << TestLog::Message << m_extName << ": " << (supported ? "supported" : "not supported") << TestLog::EndMessage;
181 log << TestLog::Message << TestLog::EndMessage;
193 log << TestLog::Message << "Fail, received null pointer for supported extension function: " << funcName << TestLog::EndMessage;
220 TestLog& log = m_testCtx.getLog();
225 log << TestLog::Message << "EGL_KHR_get_all_proc_addresses: " << (funcPtrSupported ? "supported" : "not supported (…)
    [all...]
  /external/deqp/framework/common/
tcuResultCollector.hpp 34 class TestLog;
47 ResultCollector (TestLog& log, const std::string& prefix = "");
60 TestLog* m_log;
tcuTestLog.cpp 84 TestLog& MessageBuilder::operator<< (const TestLog::EndMessageToken&)
92 TestLog& SampleBuilder::operator<< (const TestLog::EndSampleToken&)
111 // TestLog
113 TestLog::TestLog (const char* fileName, deUint32 flags)
120 TestLog::~TestLog (void)
125 void TestLog::writeMessage (const char* msgStr
    [all...]
tcuImageCompare.cpp 216 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode)
235 log << TestLog::Message << "Image comparison failed: difference = " << difference << ", threshold = " << threshold << TestLog::EndMessage;
237 log << TestLog::ImageSet(imageSetName, imageSetDesc)
238 << TestLog::Image("Result", "Result", result, pixelScale, pixelBias)
239 << TestLog::Image("Reference", "Reference", reference, pixelScale, pixelBias)
240 << TestLog::Image("ErrorMask", "Error mask", errorMask)
241 << TestLog::EndImageSet;
248 log << TestLog::ImageSet(imageSetName, imageSetDesc)
249 << TestLog::Image("Result", "Result", result, pixelScale, pixelBias
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
TestLogWriter.java 13 private TestLog log;
17 public TestLogWriter(TestLog log, int level) {
31 log.msg("", level, level == TestLog.ERR, true);
33 log.msg(str, level, level == TestLog.ERR, false);
  /external/deqp/modules/gles2/functional/
es2fApiCase.cpp 70 m_testCtx.getLog() << tcu::TestLog::Message << "// ERROR: expected " << glu::getErrorStr(expected) << tcu::TestLog::EndMessage;
81 m_log << tcu::TestLog::Message << "// ERROR: expected " << glu::getErrorStr(expected0) << " or " << glu::getErrorStr(expected1) << tcu::TestLog::EndMessage;
91 m_log << tcu::TestLog::Message << "// ERROR: expected " << (expected ? "GL_TRUE" : "GL_FALSE") << tcu::TestLog::EndMessage;
103 m_testCtx.getLog() << tcu::TestLog::Message << "// No supported extensions available." << tcu::TestLog::EndMessage;
es2fFlushFinishTests.cpp 57 using tcu::TestLog;
212 tcu::TestLog& operator<< (tcu::TestLog& log, const FlushFinishCase::Sample& sample)
214 log << TestLog::Message << sample.numDrawCalls << " calls:\t" << sample.waitTime << " us wait,\t" << sample.readPixelsTime << " us read" << TestLog::EndMessage;
276 m_testCtx.getLog() << TestLog::Message << "Calibrating maximum draw call count, target duration = " << int(MAX_SAMPLE_DURATION_US) << " us" << TestLog::EndMessage;
289 m_testCtx.getLog() << TestLog::Message << "Duration with " << curDrawCount << " draw calls = " << curDuration << " us" << TestLog::EndMessage;
318 m_testCtx.getLog() << TestLog::Integer("MaxDrawCalls", "Maximum number of draw calls", "", QP_KEY_TAG_NONE, params.maxDrawCalls)
    [all...]
  /external/deqp/modules/internal/
ditImageIOTests.cpp 36 using tcu::TestLog;
52 m_testCtx.getLog() << TestLog::Message << "Loading image from file '" << m_filename << "'" << TestLog::EndMessage;
57 m_testCtx.getLog() << TestLog::Message << "Loaded " << texture.getWidth() << "x" << texture.getHeight() << "x" << texture.getDepth() << " image with format " << texture.getFormat() << TestLog::EndMessage;
68 m_testCtx.getLog() << TestLog::Message << "ERROR: expected hash " << tcu::toHex(m_expectedHash) << ", got " << tcu::toHex(hash) << TestLog::EndMessage;
69 m_testCtx.getLog() << TestLog::Image("Image", "Loaded image", texture.getAccess());
  /external/deqp/modules/glshared/
glsShaderExecUtil.hpp 32 class TestLog;
79 virtual void log (tcu::TestLog& log) const = 0;
99 inline tcu::TestLog& operator<< (tcu::TestLog& log, const ShaderExecutor* executor) { executor->log(log); return log; }
100 inline tcu::TestLog& operator<< (tcu::TestLog& log, const ShaderExecutor& executor) { executor.log(log); return log; }
glsStateChangePerfTestCases.cpp 44 using tcu::TestLog;
541 TestLog& log = m_testCtx.getLog();
546 log << TestLog::Message << "Interleaved mean: " << interleaved.mean << TestLog::EndMessage;
547 log << TestLog::Message << "Interleaved median: " << interleaved.median << TestLog::EndMessage;
548 log << TestLog::Message << "Interleaved variance: " << interleaved.variance << TestLog::EndMessage;
549 log << TestLog::Message << "Interleaved min: " << interleaved.min << TestLog::EndMessage
    [all...]
  /external/deqp/modules/gles31/functional/
es31fInternalFormatQueryTests.cpp 95 m_testCtx.getLog() << tcu::TestLog::Message << "Format must support sample count of " << glu::getGettableStateStr(samplesEnum) << tcu::TestLog::EndMessage;
100 m_testCtx.getLog() << tcu::TestLog::Message << glu::getGettableStateStr(samplesEnum) << " = " << maxSamples << tcu::TestLog::EndMessage;
104 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR: minimum value of " << glu::getGettableStateStr(samplesEnum) << " is 1" << tcu::TestLog::EndMessage;
114 m_testCtx.getLog() << tcu::TestLog::Message << "GL_NUM_SAMPLE_COUNTS = " << numSampleCounts << tcu::TestLog::EndMessage;
118 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR: Format MUST support some multisample configuration, got GL_NUM_SAMPLE_COUNTS = " << numSampleCounts << tcu::TestLog::EndMessage
    [all...]
es31fNegativeTestShared.cpp 41 using tcu::TestLog;
52 tcu::TestLog& log,
68 getLog() << TestLog::EndSection;
87 getLog() << TestLog::Section("callstream", desc);
97 getLog() << TestLog::EndSection;
es31fMultisampleTests.cpp 43 using tcu::TestLog;
146 m_testCtx.getLog() << tcu::TestLog::Message << "Sample " << ndx << " is not in valid range [0,1], got " << samplePos << tcu::TestLog::EndMessage;
245 TestLog& log = m_testCtx.getLog();
257 log << TestLog::Message << "GL_SAMPLES = " << m_numSamples << TestLog::EndMessage;
429 TestLog& log = m_testCtx.getLog();
439 log << TestLog::Message << "Additive blending enabled in order to detect (erroneously) overlapping samples" << TestLog::EndMessage;
441 log << TestLog::Message << "Clearing color to all-zeros" << TestLog::EndMessage
    [all...]
  /external/deqp/modules/gles2/performance/
es2pBlendTests.cpp 41 using tcu::TestLog;
79 TestLog& log = m_testCtx.getLog();
81 log << TestLog::Message << "modeRGB: " << glu::getBlendEquationStr(m_modeRGB) << TestLog::EndMessage;
82 log << TestLog::Message << "modeAlpha: " << glu::getBlendEquationStr(m_modeAlpha) << TestLog::EndMessage;
83 log << TestLog::Message << "srcRGB: " << glu::getBlendFactorStr(m_srcRGB) << TestLog::EndMessage;
84 log << TestLog::Message << "dstRGB: " << glu::getBlendFactorStr(m_dstRGB) << TestLog::EndMessage
    [all...]

Completed in 396 milliseconds

12 3 4 5 6 7 8 91011>>