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

  /external/deqp/scripts/log/
log_to_xml.py 119 # Check if we have TestCaseResult
120 testCaseResult = findFirstElementByName(rootNodes, 'TestCaseResult')
121 if testCaseResult == None:
122 # Create TestCaseResult element
123 testCaseResult = doc.createElement('TestCaseResult')
124 testCaseResult.setAttribute('CasePath', result.name)
125 testCaseResult.setAttribute('CaseType', 'SelfValidate') # \todo [pyry] Not recoverable..
126 testCaseResult.setAttribute('Version', LOG_VERSION
    [all...]
  /platform_testing/libraries/device-collectors/src/hostsidetests/src/com/android/collectors/
DeviceCollectorsTest.java 124 for (TestResult testCaseResult : result.getTestResults().values()) {
125 assertFalse(testCaseResult.getMetrics().containsKey("test_start"));
126 assertFalse(testCaseResult.getMetrics().containsKey("test_fail"));
127 assertFalse(testCaseResult.getMetrics().containsKey("test_end"));
154 for (TestResult testCaseResult : result.getTestResults().values()) {
155 assertFalse(testCaseResult.getMetrics().containsKey("test_start"));
156 assertFalse(testCaseResult.getMetrics().containsKey("test_fail"));
157 assertFalse(testCaseResult.getMetrics().containsKey("test_end"));
  /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());
  /tools/tradefederation/core/prod-tests/src/com/android/graphics/tests/
ImageProcessingTest.java 100 for (TestResult testCaseResult: testRunResults) {
101 Map<String, String> testMetrics = testCaseResult.getMetrics();
  /external/deqp/android/package/src/com/drawelements/deqp/testercore/
DeqpInstrumentation.java 168 public void testCaseResult (String code, String details)
172 info.putString("dEQP-EventType", "TestCaseResult");
173 info.putString("dEQP-TestCaseResult-Code", code);
174 info.putString("dEQP-TestCaseResult-Details", details);
  /test/vti/dashboard/src/main/webapp/js/
test_results.js 60 * @param testCaseResult The string name of a VtsReportMessage.TestCaseResult.
63 function getNickname(testCaseResult) {
64 return testCaseResult
  /test/vti/dashboard/src/main/java/com/android/vts/util/
TestResults.java 25 import com.android.vts.proto.VtsReportMessage.TestCaseResult;
138 totResultCounts = new int[TestCaseResult.values().length];
289 TestCaseResult aggregateStatus = TestCaseResult.UNKNOWN_RESULT;
300 if (result == TestCaseResult.TEST_CASE_RESULT_PASS.getNumber()) {
301 if (aggregateStatus == TestCaseResult.UNKNOWN_RESULT) {
302 aggregateStatus = TestCaseResult.TEST_CASE_RESULT_PASS;
304 } else if (result != TestCaseResult.TEST_CASE_RESULT_SKIP.getNumber()) {
305 aggregateStatus = TestCaseResult.TEST_CASE_RESULT_FAIL;
323 TestCaseResult testCaseResult = TestCaseResult.valueOf(result)
    [all...]

Completed in 297 milliseconds