Home | History | Annotate | Download | only in internal

Lines Matching refs:TestLog

32 using tcu::TestLog;
49 TestLog& log = m_testCtx.getLog();
51 log << TestLog::SampleList("TestSamples", "Test Sample List")
52 << TestLog::SampleInfo
53 << TestLog::ValueInfo("NumDrawCalls", "Number of draw calls", "", QP_SAMPLE_VALUE_TAG_PREDICTOR)
54 << TestLog::ValueInfo("NumOps", "Number of ops in shader", "op", QP_SAMPLE_VALUE_TAG_PREDICTOR)
55 << TestLog::ValueInfo("RenderTime", "Rendering time", "ms", QP_SAMPLE_VALUE_TAG_RESPONSE)
56 << TestLog::EndSampleInfo;
58 log << TestLog::Sample << 1 << 2 << 2.3 << TestLog::EndSample
59 << TestLog::Sample << 0 << 0 << 0 << TestLog::EndSample
60 << TestLog::Sample << 421 << -23 << 0.00001 << TestLog::EndSample
61 << TestLog::Sample << 2 << 9 << -1e9 << TestLog::EndSample
62 << TestLog::Sample << std::numeric_limits<deInt64>::max() << std::numeric_limits<deInt64>::min() << -0.0f << TestLog::EndSample
63 << TestLog::Sample << 0x3355 << 0xf24 << std::numeric_limits<double>::max() << TestLog::EndSample;
65 log << TestLog::EndSampleList;
73 : TestCaseGroup(testCtx, "testlog", "Test Log Tests")