HomeSort by relevance Sort by last modified time
    Searched refs:testCaseResult (Results 1 - 3 of 3) sorted by null

  /external/deqp/scripts/log/
log_to_xml.py 99 # Check if we have TestCaseResult
100 testCaseResult = findFirstElementByName(rootNodes, 'TestCaseResult')
101 if testCaseResult == None:
102 # Create TestCaseResult element
103 testCaseResult = doc.createElement('TestCaseResult')
104 testCaseResult.setAttribute('CasePath', result.name)
105 testCaseResult.setAttribute('CaseType', 'SelfValidate') # \todo [pyry] Not recoverable..
106 testCaseResult.setAttribute('Version', LOG_VERSION
    [all...]
  /external/deqp/framework/platform/android/
tcuTestLogParserJNI.cpp 57 void testCaseResult (const char* statusCode, const char* details);
91 m_testCaseResultID = m_env->GetMethodID(m_class, "testCaseResult", "(Ljava/lang/String;Ljava/lang/String;)V");
149 void TestLogListener::testCaseResult (const char* statusCode, const char* details)
181 xe::TestCaseResult m_testCaseResult;
228 m_testCaseResult = xe::TestCaseResult();
236 listener.testCaseResult(xe::getTestStatusCodeName(m_testCaseResult.statusCode), m_testCaseResult.statusDetails.c_str());
274 listener.testCaseResult(xe::getTestStatusCodeName(m_testCaseResult.statusCode), m_testCaseResult.statusDetails.c_str());
295 listener.testCaseResult(xe::getTestStatusCodeName(m_testCaseResult.statusCode), m_testCaseResult.statusDetails.c_str());
  /external/deqp/android/package/src/com/drawelements/deqp/testercore/
DeqpInstrumentation.java 164 public void testCaseResult (String code, String details)
168 info.putString("dEQP-EventType", "TestCaseResult");
169 info.putString("dEQP-TestCaseResult-Code", code);
170 info.putString("dEQP-TestCaseResult-Details", details);

Completed in 36 milliseconds