Commit f729e29d by Jamie Madill Committed by Commit Bot

dEQP: Make RandomOrderExecutor produce less spam.

We can take out the test case duration output, as it would only be useful for diagnosing unexpectedly slow tests. This will reduce the size of dEQP logs on the bots. BUG=None Change-Id: I591b2c564e89393ca6754140001f334c19a10b1a Reviewed-on: https://chromium-review.googlesource.com/361243Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 5bc93c41
...@@ -268,12 +268,6 @@ tcu::TestStatus RandomOrderExecutor::executeInner(TestCase *testCase, const std: ...@@ -268,12 +268,6 @@ tcu::TestStatus RandomOrderExecutor::executeInner(TestCase *testCase, const std:
m_testCtx.setTerminateAfter(true); m_testCtx.setTerminateAfter(true);
} }
{
const deInt64 duration = deGetMicroseconds() - testStartTime;
m_testCtx.getLog() << TestLog::Integer("TestDuration", "Test case duration in microseconds",
"us", QP_KEY_TAG_TIME, duration);
}
if (m_testCtx.getWatchDog()) if (m_testCtx.getWatchDog())
qpWatchDog_reset(m_testCtx.getWatchDog()); qpWatchDog_reset(m_testCtx.getWatchDog());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment