Home
last modified time | relevance | path

Searched refs:report (Results 1 – 22 of 22) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/api/
DDatastoreRestServlet.java135 private void insertTestReport(TestReportMessage report) { in insertTestReport() argument
137 if (!report.hasStartTimestamp() in insertTestReport()
138 || !report.hasEndTimestamp() in insertTestReport()
139 || !report.hasTest() in insertTestReport()
140 || !report.hasHostInfo() in insertTestReport()
141 || !report.hasBuildInfo()) { in insertTestReport()
181 long startTimestamp = report.getStartTimestamp(); in insertTestReport()
182 long endTimestamp = report.getEndTimestamp(); in insertTestReport()
183 String testName = report.getTest().toStringUtf8(); in insertTestReport()
184 String testBuildId = report.getBuildInfo().getId().toStringUtf8(); in insertTestReport()
[all …]
/test/framework/harnesses/host_controller/acloud/
Dacloud_client.py130 report = json.load(f)
132 return report['status']=='SUCCESS'
154 report = json.load(f)
156 return report['data']['devices'][0]['ip']
163 report = json.load(f)
165 return report['data']['devices'][0]['instance_name']
201 report = json.load(f)
203 return report['status']=='SUCCESS'
/test/suite_harness/common/util/tests/src/com/android/compatibility/common/util/
DReportLogTest.java93 ReportLog report = ReportLog.parse(HEADER_XML); in testParse_noData() local
94 assertNull(report.getSummary()); in testParse_noData()
98 ReportLog report = ReportLog.parse(String.format(SUMMARY_XML, "testParse_summaryOnly:125")); in testParse_summaryOnly() local
99 assertNotNull(report); in testParse_summaryOnly()
100 assertEquals("Sample", report.getSummary().getMessage()); in testParse_summaryOnly()
104 ReportLog report = ReportLog.parse(String.format(FULL_XML, "testParse_full:140")); in testParse_full() local
105 assertNotNull(report); in testParse_full()
106 assertEquals("Sample", report.getSummary().getMessage()); in testParse_full()
DResultHandlerTest.java235 ReportLog report = new ReportLog(); in testSerialization() local
238 report.setSummary(summary); in testSerialization()
239 moduleBTest4.setReportLog(report); in testSerialization()
324 ReportLog report = new ReportLog(); in testSerialization_whenTestResultWithTestResultHistoryWithoutParsing() local
332 report.setSummary(summary); in testSerialization_whenTestResultWithTestResultHistoryWithoutParsing()
333 moduleBTest4.setReportLog(report); in testSerialization_whenTestResultWithTestResultHistoryWithoutParsing()
614 ReportLog report = moduleBTest4.getReportLog(); in checkResult() local
615 assertNotNull("Expected report", report); in checkResult()
616 ReportLog.Metric summary = report.getSummary(); in checkResult()
/test/vts/proto/
DVtsReportMessage.proto123 // To specify a test case execution report.
135 // coverage report per file
141 // systrace report message per file
150 // To specify a profiling report.
174 // To specify a systrace report.
179 // the produced html report
186 // To specify a coverage report.
216 // produced html report.
234 // To specify a API coverage report. Currently only for HAL API coverage.
246 // To specify log report. This can be used either for per-test-module
[all …]
/test/suite_harness/common/util/src/com/android/compatibility/common/util/
DTestResult.java123 public void setReportLog(ReportLog report) { in setReportLog() argument
124 mReport = report; in setReportLog()
196 public void passed(ReportLog report) { in passed() argument
200 if (report != null) { in passed()
201 setReportLog(report); in passed()
DITestResult.java76 void setReportLog(ReportLog report); in setReportLog() argument
120 void passed(ReportLog report); in passed() argument
DReportLog.java368 ReportLog report = new ReportLog(); in parse() local
369 report.setSummary(Metric.parse(parser)); in parse()
372 return report; in parse()
DResultHandler.java543 ReportLog report = r.getReportLog(); in writeResults() local
544 if (report != null) { in writeResults()
545 ReportLog.serialize(serializer, report); in writeResults()
/test/vti/dashboard/
DREADME.md113 http://127.0.0.1:8080/api/test_data/report
123 First, in test-plan-report-data.json, you need to set the same number of data under "testCaseNames"
152 Second, in test-report-data.json file, you need to make sure that "testModules" should have
154 in the test-report-data.json file.
156 test-report-data.json
172 test-plan-report-data.json
196 curl -d @testdata/test-report-data.json -m 30 -X POST http://127.0.0.1:8080/api/test_data/report -H…
197 curl -d @testdata/test-plan-report-data.json -m 30 -X POST http://127.0.0.1:8080/api/test_data/plan…
/test/vts/utils/python/web/
Dweb_utils.py172 report = self.report_msg
174 report = self.current_test_report_msg
177 api_coverage = report.api_coverage.add()
218 report = self.report_msg
220 report = self.current_test_report_msg
222 coverage = report.coverage.add()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/suite/
DCertificationSuiteResultReporter.java385 File report = createReport(reportFile); in postFormattingStep() local
386 if (report != null) { in postFormattingStep()
387 CLog.i("Viewable report: %s", report.getAbsolutePath()); in postFormattingStep()
597 File report = new File(inputXml.getParentFile(), HTLM_REPORT_NAME); in createReport() local
601 OutputStream outputStream = new FileOutputStream(report)) { in createReport()
607 FileUtil.deleteFile(report); in createReport()
610 return report; in createReport()
/test/app_compat/csuite/
DREADME.md3 C-Suite consists of the testing framework and test cases, designed to detect and report app
/test/suite_harness/tools/cts-test-metrics/
DREADME9 Test metrics json files can be found in $CTS_ROOT/repository/results/$RESULT_DIR/report-log-files/
/test/vts-testcase/performance/audio_loopback_test/
DREADME.md9 * What metrics this test report?
/test/vts/doc/
Duser_manual.md108 ### 2.2. Test report for APFE (Android Partner Front-End)
110 The uploadable report xml file can be found at
/test/suite_harness/common/host-side/tradefed/tests/res/testtype/
DtestJar1.jar ... .android.compatibility.common.util.MetricsReportLog report int NUMBER_REPEAT com.android.tradefed.build. ...
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
DResultReporter.java380 ReportLog report = null; in testEnded() local
383 report = ReportLog.parse(perfResult.getMeasurements().getSingleString()); in testEnded()
389 report = MetricsStore.removeResult(mBuildHelper.getBuildInfo(), in testEnded()
395 mCurrentResult.passed(report); in testEnded()
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_plan_run.jsp62 '<i class="material-icons">report</i> HAL API Information : ' + defaultInfo
93 '<i class="material-icons">report</i> API Information' +
Dshow_tree.jsp98 … '<i class="material-icons">report</i> HAL API Information : ' + defaultInfo
123 '<i class="material-icons">report</i> API Information' +
Dshow_suite_release.jsp293 …y="true" onclick="this.select()" value="reproduce --report_path=gs://vts-report/<c:out value="${te…
/test/framework/harnesses/cts-tradefed/
Dtradefed-cts-prebuilt.jarMETA-INF/ META-INF/MANIFEST.MF com/android/compatibility/common/ ...