Home
last modified time | relevance | path

Searched refs:testLog (Results 1 – 23 of 23) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiToolingInfoTests.cpp88 tcu::TestLog& testLog = context.getTestContext().getLog(); in checkToolsProperties() local
107 testLog << tcu::TestLog::Message << "Tool validation failed" << tcu::TestLog::EndMessage; in checkToolsProperties()
108testLog << tcu::TestLog::Message << "Tool name: " << deviceToolPropertiesEXTArray[i].name << tcu::… in checkToolsProperties()
109testLog << tcu::TestLog::Message << "Version: " << deviceToolPropertiesEXTArray[i].version << tcu:… in checkToolsProperties()
110testLog << tcu::TestLog::Message << "Description: " << deviceToolPropertiesEXTArray[i].description… in checkToolsProperties()
111testLog << tcu::TestLog::Message << "Purposes: " << getToolPurposeFlagsEXTStr(deviceToolProperties… in checkToolsProperties()
114testLog << tcu::TestLog::Message << "Corresponding Layer: " << deviceToolPropertiesEXTArray[i].lay… in checkToolsProperties()
125 tcu::TestLog& testLog = context.getTestContext().getLog(); in validateGetter() local
134testLog << tcu::TestLog::Message << "getPhysicalDeviceToolPropertiesEXT wrong result code" << tcu:… in validateGetter()
148testLog << tcu::TestLog::Message << "getPhysicalDeviceToolPropertiesEXT wrong result code" << tcu:… in validateGetter()
[all …]
/external/libchrome/base/test/android/junit/src/org/chromium/base/test/util/
DTestRunnerTestRule.java80 TestLog testLog = new TestLog(); in runTest() local
86 testLog.runTests.add(description); in runTest()
91 Assert.assertThat(description, isIn(testLog.runTests)); in runTest()
106 testLog.skippedTests.add(description); in runTest()
130 return testLog; in runTest()
/external/deqp/framework/platform/android/
DtcuTestLogParserJNI.cpp242 std::ostringstream testLog; in parse() local
243 xe::xml::Writer xmlWriter(testLog); in parse()
245 testLog << "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n" in parse()
250 listener.testLogData(testLog.str().c_str()); in parse()
261 std::ostringstream testLog; in parse() local
262 xe::xml::Writer xmlWriter(testLog); in parse()
264 testLog << "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n" in parse()
269 listener.testLogData(testLog.str().c_str()); in parse()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestAttributeValues.java98 synchronized (pathChecker.testLog) { in TestValid()
196 synchronized (pathChecker.testLog) { in checkFile()
197 pathChecker.testLog.errln(fullFile + "error"); in checkFile()
199 e.printStackTrace(pathChecker.testLog.getLogPrintWriter()); in checkFile()
222 private final TestFmwk testLog; field in TestAttributeValues.PathChecker
231 public PathChecker(TestFmwk testLog, DtdData dtdData) { in PathChecker() argument
232 this.testLog = testLog; in PathChecker()
383 synchronized (testLog) { in show()
384 testLog.errln(out.toString()); in show()
/external/deqp/external/openglcts/modules/glesext/draw_buffers_indexed/
DesextcDrawBuffersIndexedBase.cpp61 : state(4), gl(context.getRenderContext().getFunctions()), testLog(log) in BlendMaskStateMachine()
66 : state(dbs), gl(context.getRenderContext().getFunctions()), testLog(log) in BlendMaskStateMachine()
87 testLog << tcu::TestLog::Message << "General state should be set to " << s in CheckEnumGeneral()
108testLog << tcu::TestLog::Message << "State for " << e << " in buffer #" << idx << " should be set … in CheckEnumForBuffer()
122testLog << tcu::TestLog::Message << "Blending for buffer #" << idx << " set to: " << !state[idx].e… in CheckBuffer()
150testLog << tcu::TestLog::Message << "GL_COLOR_WRITEMASK for buffer #" << idx << " should be set to… in CheckBuffer()
183testLog << tcu::TestLog::Message << "GL_COLOR_WRITEMASK for buffer #" << idx << " should be set to… in CheckBuffer()
DesextcDrawBuffersIndexedBase.hpp118 tcu::TestLog& testLog; member in glcts::DrawBuffersIndexedBase::BlendMaskStateMachine
/external/cldr/tools/java/org/unicode/cldr/util/
DCLDRConfig.java192 private TestLog testLog = null; field in CLDRConfig
196 testLog = log; in setTestLog()
202 testLog = log; in setTestLog()
207 if (testLog != null) { in logln()
208 testLog.logln(msg); in logln()
/external/slf4j/log4j-over-slf4j/compatibility/src/main/java/test/
DLog4j12Calls.java28 public void testLog() { in testLog() method in Log4j12Calls
DLog4j13Calls.java30 public void testLog() { in testLog() method in Log4j13Calls
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderFConvertTests.cpp827 auto& testLog = m_context.getTestContext().getLog(); in iterate() local
839 conversionOk = validConversion(inputValues, outputValues, testLog); in iterate()
846 conversionOk = validConversion(inputValues, outputValues, testLog); in iterate()
865 conversionOk = validConversion(inputValues, outputValues, testLog); in iterate()
872 conversionOk = validConversion(inputValues, outputValues, testLog); in iterate()
891 conversionOk = validConversion(inputValues, outputValues, testLog); in iterate()
898 conversionOk = validConversion(inputValues, outputValues, testLog); in iterate()
DvktShaderBuiltinPrecisionTests.cpp6185 TestLog& testLog = m_context.getTestContext().getLog(); in iterate() local
6204 testLog << TestLog::Message << "Statement: " << m_stmt << TestLog::EndMessage; in iterate()
6215 testLog << TestLog::Message << "Reference definitions:\n" << oss.str() in iterate()
6311 MessageBuilder builder = testLog.message(); in iterate()
6371 testLog << TestLog::Message << "(Skipped " << (numErrors - maxMsgs) << " messages.)" in iterate()
6377 testLog << TestLog::Message << "All " << numValues << " inputs passed." in iterate()
6382 testLog << TestLog::Message << numErrors << "/" << numValues << " inputs failed." in iterate()
/external/zstd/tests/
Dzbufftest.c352 { U32 const testLog = FUZ_rand(&lseed) % maxSrcLog; in fuzzerTests() local
353 U32 const cLevel = (FUZ_rand(&lseed) % (ZSTD_maxCLevel() - (testLog/3))) + 1; in fuzzerTests()
354 maxTestSize = FUZ_rLogLength(&lseed, testLog); in fuzzerTests()
Dzstreamtest.c1843 U32 const testLog = FUZ_rand(&lseed) % maxSrcLog; in fuzzerTests() local
1847 (MAX(testLog, dictLog) / 3))) in fuzzerTests()
1850 maxTestSize = FUZ_rLogLength(&lseed, testLog); in fuzzerTests()
1851 oldTestLog = testLog; in fuzzerTests()
2119 U32 const testLog = FUZ_rand(&lseed) % maxSrcLog; in fuzzerTests_newAPI() local
2123 (MAX(testLog, dictLog) / 2))) + in fuzzerTests_newAPI()
2127 maxTestSize = FUZ_rLogLength(&lseed, testLog); in fuzzerTests_newAPI()
2129 oldTestLog = testLog; in fuzzerTests_newAPI()
2205 U32 const jobLog = FUZ_rand(&lseed) % (testLog+1); in fuzzerTests_newAPI()
Dfuzzer.c3509 { U32 const testLog = FUZ_rand(&lseed) % maxSrcLog; in fuzzerTests() local
3513 (MAX(testLog, dictLog) / cLevelLimiter))) + in fuzzerTests()
3515 maxTestSize = FUZ_rLogLength(&lseed, testLog); in fuzzerTests()
/external/deqp/external/vulkancts/modules/vulkan/rasterization/
DvktRasterizationFragShaderSideEffectsTests.cpp664 auto& testLog = m_context.getTestContext().getLog(); in iterate() local
665 testLog << tcu::TestLog::Image("ColorBuffer", "Result color buffer", colorPixels); in iterate()
666 testLog << tcu::TestLog::Image("ErrorMask", "Error mask with errors marked in red", errorMask); in iterate()
/external/tensorflow/tensorflow/python/ops/numpy_ops/
Dnp_math_ops_test.py145 def testLog(self): member in MathTest
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMultisampleTests.cpp1706 tcu::TestLog& testLog = m_context.getTestContext().getLog(); in iterate() local
1708 testLog << tcu::TestLog::ImageSet("Images", "Images") in iterate()
1713testLog << tcu::TestLog::Image("sampleShadedImage", "One sample of sample shaded image", sampleSha… in iterate()
1715 testLog << tcu::TestLog::EndImageSet; in iterate()
/external/tensorflow/tensorflow/compiler/tests/
Dunary_ops_test.py150 def testLog(self): member in UnaryOpsTest
/external/python/cpython2/Lib/test/
Dtest_math.py591 def testLog(self): member in MathTests
/external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/
DDeqpTestRunner.java332 mSink.testLog(testId.getClassName() + "." + testId.getTestName() + "@" in forwardFinalizedPendingResult()
/external/python/cpython3/Lib/test/
Dtest_math.py1052 def testLog(self): member in MathTests
/external/tensorflow/tensorflow/compiler/xla/python/
Dxla_client_test.py888 def testLog(self): member in TestFactory.SingleOpTest
/external/tensorflow/tensorflow/compiler/mlir/lite/tests/
Dops.mlir113 // CHECK-LABEL: testLog
114 func @testLog(tensor<? x f32>) -> tensor<? x f32> {