Home
last modified time | relevance | path

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

12

/cts/
DCtsCoverage.mk39 cts-test-coverage-report := $(coverage_out)/test-coverage.html
40 cts-verifier-coverage-report := $(coverage_out)/verifier-coverage.html
41 cts-combined-coverage-report := $(coverage_out)/combined-coverage.html
42 cts-combined-xml-coverage-report := $(coverage_out)/combined-coverage.xml
49 $(cts-test-coverage-report): PRIVATE_TEST_CASES := $(COMPATIBILITY_TESTCASES_OUT_cts)
50 $(cts-test-coverage-report): PRIVATE_CTS_API_COVERAGE_EXE := $(cts_api_coverage_exe)
51 $(cts-test-coverage-report): PRIVATE_DEXDEPS_EXE := $(dexdeps_exe)
52 $(cts-test-coverage-report): PRIVATE_API_XML_DESC := $(api_xml_description)
53 $(cts-test-coverage-report): PRIVATE_NAPI_XML_DESC := $(napi_xml_description)
54 $(cts-test-coverage-report) : $(android_cts_zip) $(cts_api_coverage_dependencies) | $(ACP)
[all …]
/cts/tools/vm-tests-tf/etc/
Dstarthosttests62 report=$dalviktest/report.html
111 rm -f $report
112 echo $pre_report > $report
174 echo -n "<tr class=\"ok\"><td>Success</td><td>$jtitle</td>" >> $report
175 echo "<td>$jcomment</td><td>$details</td></tr>" >> $report
192 echo "<tr class=\"nok\"><td>Failure</td><td>$jtitle</td><td>" >> $report
193 echo "$jcomment</td><td>$vmres</td></tr>" >> $report
196 echo "<tr class=\"wok\"><td>Failure</td><td>$jtitle</td><td>" >> $report
197 echo "$jcomment</td><td>(No stacktrace, but errors on console)" >> $report
198 echo "<br>$vmres</td></tr>" >> $report
[all …]
Dstarttests64 report=$dalviktest/report.html
118 rm -f $report
119 echo $pre_report > $report
193 echo -n "<tr class=\"ok\"><td>Success</td><td>$jtitle</td>" >> $report
194 echo "<td>$jcomment</td><td>$details</td></tr>" >> $report
211 echo "<tr class=\"nok\"><td>Failure</td><td>$jtitle</td><td>" >> $report
212 echo "$jcomment</td><td>$vmres</td></tr>" >> $report
215 echo "<tr class=\"wok\"><td>Failure</td><td>$jtitle</td><td>" >> $report
216 echo "$jcomment</td><td>(No stacktrace, but errors on console)" >> $report
217 echo "<br>$vmres</td></tr>" >> $report
[all …]
/cts/tests/simplecpu/src/android/simplecpu/cts/
DSimpleCpuTest.java103 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in doTestSort() local
104 report.addValue("array_length", arrayLength, ResultType.NEUTRAL, ResultUnit.NONE); in doTestSort()
105 report.addValues("sorting_time", result, ResultType.LOWER_BETTER, ResultUnit.MS); in doTestSort()
110report.setSummary("sorting_time_average", stat.mAverage, ResultType.LOWER_BETTER, ResultUnit.MS); in doTestSort()
111 report.submit(getInstrumentation()); in doTestSort()
127 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in doMatrixMultiplication() local
128 report.addValue("matrix_dimension", n, ResultType.NEUTRAL, ResultUnit.NONE); in doMatrixMultiplication()
129 report.addValues("matrix_mutiplication_time", result, ResultType.LOWER_BETTER, in doMatrixMultiplication()
135 report.setSummary("matrix_mutiplication_time_average", stat.mAverage, in doMatrixMultiplication()
137 report.submit(getInstrumentation()); in doMatrixMultiplication()
/cts/hostsidetests/statsd/src/android/cts/statsd/uidmap/
DUidMapTests.java45 for (ConfigMetricsReport report : reports.getReportsList()) { in testUidSnapshotIncluded()
46 UidMapping uidmap = report.getUidMap(); in testUidSnapshotIncluded()
88 for (ConfigMetricsReport report : reports.getReportsList()) { in testChangeFromInstallation()
89 LogUtil.CLog.d("Got the following report: \n" + report.toString()); in testChangeFromInstallation()
90 if (hasMatchingChange(report.getUidMap(), uid, false)) { in testChangeFromInstallation()
115 for (ConfigMetricsReport report : reports.getReportsList()) { in testChangeFromReinstall()
116 LogUtil.CLog.d("Got the following report: \n" + report.toString()); in testChangeFromReinstall()
117 if (hasMatchingChange(report.getUidMap(), uid, false)) { in testChangeFromReinstall()
140 for (ConfigMetricsReport report : reports.getReportsList()) { in testChangeFromUninstall()
141 LogUtil.CLog.d("Got the following report: \n" + report.toString()); in testChangeFromUninstall()
[all …]
/cts/tests/filesystem/src/android/filesystem/cts/
DSequentialRWTest.java64 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testSingleSequentialWrite() local
65 report.addValue("files", numberOfFiles, ResultType.NEUTRAL, ResultUnit.COUNT); in testSingleSequentialWrite()
79 report.addValues("write_throughput", mbps, ResultType.HIGHER_BETTER, ResultUnit.MBPS); in testSingleSequentialWrite()
80 report.addValues("write_amount", wrAmount, ResultType.NEUTRAL, ResultUnit.BYTE); in testSingleSequentialWrite()
82 report.setSummary("write_throughput_average", stat.mAverage, ResultType.HIGHER_BETTER, in testSingleSequentialWrite()
84 report.submit(getInstrumentation()); in testSingleSequentialWrite()
111 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testSingleSequentialRead() local
112 report.addValue("file_size", fileSize, ResultType.NEUTRAL, ResultUnit.NONE); in testSingleSequentialRead()
113 report.addValue("write_throughput", in testSingleSequentialRead()
134 report.addValues("read_throughput", mbps, ResultType.HIGHER_BETTER, ResultUnit.MBPS); in testSingleSequentialRead()
[all …]
DRandomRWTest.java52 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testRandomRead() local
53 FileUtil.doRandomReadTest(getContext(), DIR_RANDOM_RD, report, fileSize, in testRandomRead() local
55 report.submit(getInstrumentation()); in testRandomRead()
69 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testRandomUpdate() local
71 FileUtil.doRandomWriteTest(getContext(), DIR_RANDOM_WR, report, fileSize, in testRandomUpdate() local
74 report.submit(getInstrumentation()); in testRandomUpdate()
DFileUtil.java273 public static void doRandomReadTest(Context context, String dirName, ReportLog report, in doRandomReadTest() argument
309 report.addValues("read_throughput", mbps, ResultType.HIGHER_BETTER, ResultUnit.MBPS); in doRandomReadTest()
311 report.addValues("read_amount", rdAmount, ResultType.NEUTRAL, ResultUnit.BYTE); in doRandomReadTest()
314 report.setSummary("read_throughput_average", stat.mAverage, ResultType.HIGHER_BETTER, in doRandomReadTest()
327 public static void doRandomWriteTest(Context context, String dirName, ReportLog report, in doRandomWriteTest() argument
361 report.addValues("write_throughput", mbps, ResultType.HIGHER_BETTER, ResultUnit.MBPS); in doRandomWriteTest()
362 report.addValues("write_amount", wrAmount, ResultType.NEUTRAL, ResultUnit.BYTE); in doRandomWriteTest()
365 report.setSummary("write_throughput_average", stat.mAverage, ResultType.HIGHER_BETTER, in doRandomWriteTest()
389 DeviceReportLog report = new DeviceReportLog(reportName, streamName); in doSequentialUpdateTest() local
390 report.addValue("round", i, ResultType.NEUTRAL, ResultUnit.NONE); in doSequentialUpdateTest()
[all …]
DAlmostFullTest.java133 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testRandomRead() local
134 FileUtil.doRandomReadTest(getContext(), DIR_RANDOM_RD, report, fileSize, BUFFER_SIZE); in testRandomRead() local
135 report.submit(getInstrumentation()); in testRandomRead()
148 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testRandomUpdate() local
149 FileUtil.doRandomWriteTest(getContext(), DIR_RANDOM_WR, report, fileSize, BUFFER_SIZE); in testRandomUpdate() local
150 report.submit(getInstrumentation()); in testRandomUpdate()
/cts/tests/openglperf2/src/android/opengl2/cts/reference/
DGLReferenceBenchmark.java68 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testReferenceBenchmark() local
69 report.addValues("set_up_times", setUpTimes, ResultType.LOWER_BETTER, ResultUnit.MS); in testReferenceBenchmark()
70 report.addValue("update_time_average", updateAverage, ResultType.LOWER_BETTER, in testReferenceBenchmark()
72 report.addValue("render_time_average", renderAverage, ResultType.LOWER_BETTER, in testReferenceBenchmark()
76 report.setSummary("total_time_average", totalTime, ResultType.LOWER_BETTER, in testReferenceBenchmark()
78 report.submit(getInstrumentation()); in testReferenceBenchmark()
/cts/hostsidetests/statsd/src/android/cts/statsd/metadata/
DMetadataTests.java58 StatsdStatsReport report = getStatsdStatsReport(); // Has only been 1 second in testConfigTtl() local
59 LogUtil.CLog.d("got following statsdstats report: " + report.toString()); in testConfigTtl()
62 for (ConfigStats stats: report.getConfigStatsList()) { in testConfigTtl()
78 report = getStatsdStatsReport(); in testConfigTtl()
79 LogUtil.CLog.d("got following statsdstats report: " + report.toString()); in testConfigTtl()
82 for (ConfigStats stats: report.getConfigStatsList()) { in testConfigTtl()
DMetadataTestCase.java31 StatsdStatsReport report = getDump(StatsdStatsReport.parser(), in getStatsdStatsReport() local
33 return report; in getStatsdStatsReport()
/cts/tests/tvprovider/src/android/tvprovider/cts/
DTvProviderPerfTest.java109 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testChannels() local
110 report.addValues("elapsed_time_for_insert", applyBatchTimes, ResultType.LOWER_BETTER, in testChannels()
138 report.addValues("elapsed_time_for_update", applyBatchTimes, ResultType.LOWER_BETTER, in testChannels()
154 report.addValues("elapsed_time_for_query_channels", applyBatchTimes, in testChannels()
174 report.addValues("elapsed_time_for_query_a_channel", applyBatchTimes, in testChannels()
185 report.addValues("elapsed_time_for_delete", applyBatchTimes, ResultType.LOWER_BETTER, in testChannels()
189 report.addValues("average_elapsed_time_for_insert_update_query_channels_query_a_channel_" in testChannels()
191 report.submit(getInstrumentation()); in testChannels()
247 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testPrograms() local
248 report.addValues("elapsed_time_for_insert", applyBatchTimes, ResultType.LOWER_BETTER, in testPrograms()
[all …]
/cts/tests/ui/src/android/ui/cts/
DScrollingTest.java74 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testFullScrolling() local
75 report.addValues("scrolling_time", results, ResultType.LOWER_BETTER,ResultUnit.MS); in testFullScrolling()
77 report.setSummary("scrolling_time_average", stat.mAverage, in testFullScrolling()
79 report.submit(getInstrumentation()); in testFullScrolling()
/cts/hostsidetests/sample/src/android/sample/cts/
DSampleHostResultTest.java141 MetricsReportLog report = new MetricsReportLog( in testTransferTime() local
145 report.addValues("times", result, ResultType.LOWER_BETTER, ResultUnit.MS); in testTransferTime()
146 report.addValue("min", stat.mMin, ResultType.LOWER_BETTER, ResultUnit.MS); in testTransferTime()
147 report.addValue("max", stat.mMax, ResultType.LOWER_BETTER, ResultUnit.MS); in testTransferTime()
149 report.setSummary("average", stat.mAverage, ResultType.LOWER_BETTER, ResultUnit.MS); in testTransferTime()
151 report.submit(); in testTransferTime()
/cts/suite/audio_quality/lib/src/
DReport.cpp58 android::String8 report; in init() local
59 if (report.appendFormat("%s/report.xml", dirName) != 0) { in init()
62 Settings::Instance()->addSetting(Settings::EREPORT_FILE, report); in init()
63 return FileUtil::init(report.string()); in init()
/cts/hostsidetests/ui/control/src/android/taskswitching/control/cts/
DTaskSwitchingDeviceTest.java68 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testMeasureTaskSwitching() local
69 report.addValues("task_switching_time", results, ResultType.LOWER_BETTER, ResultUnit.MS); in testMeasureTaskSwitching()
71 report.setSummary("task_switching_time_average", stat.mAverage, ResultType.LOWER_BETTER, in testMeasureTaskSwitching()
73 report.submit(getInstrumentation()); in testMeasureTaskSwitching()
/cts/hostsidetests/ui/src/android/ui/cts/
DInstallTimeTest.java89 MetricsReportLog report = new MetricsReportLog(mBuild, mAbi.getName(), in testInstallTime() local
108 report.addValues("install_time", result, ResultType.LOWER_BETTER, ResultUnit.MS); in testInstallTime()
113 report.setSummary("install_time_average", stat.mAverage, ResultType.LOWER_BETTER, in testInstallTime()
115 report.submit(); in testInstallTime()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DRVCVXCheckAnalyzer.java181 AnalyzeReport report = new AnalyzeReport(); in processDataSet() local
202 report.reason = "Unable to to load recorded video."; in processDataSet()
203 return report; in processDataSet()
208 report.reason = "Video too short."; in processDataSet()
209 return report; in processDataSet()
215 report.reason = "Too many invalid frames."; in processDataSet()
216 return report; in processDataSet()
258 report.roll_rms_error = Math.sqrt(calcSqrErr(vrecs, srecs2, 0)); in processDataSet()
259 report.pitch_rms_error = Math.sqrt(calcSqrErr(vrecs, srecs2, 1)); in processDataSet()
260 report.yaw_rms_error = Math.sqrt(calcSqrErr(vrecs, srecs2, 2)); in processDataSet()
[all …]
/cts/tests/tests/security/src/android/security/cts/
DHwRngTest.java57 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in testDeviceFilePresent() local
59 report.addValue( in testDeviceFilePresent()
64 report.setSummary( in testDeviceFilePresent()
69 report.submit(getInstrumentation()); in testDeviceFilePresent()
/cts/tests/openglperf2/src/android/opengl2/cts/primitive/
DGLPrimitiveBenchmark.java144 DeviceReportLog report = new DeviceReportLog(REPORT_LOG_NAME, streamName); in runBenchmark() local
145 report.setSummary("average_fps", score, ResultType.HIGHER_BETTER, ResultUnit.SCORE); in runBenchmark()
146 report.submit(getInstrumentation()); in runBenchmark()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Fragments/
DBaseUiFragment.java105 String report = "Couldn't create test report."; in setupButtons()
107 report = mActivity.getTestReport().getContents(); in setupButtons()
109 Log.e(TAG, report); in setupButtons()
111 resultIntent.putExtra(TestActivity.EXTRA_REPORT, report); in setupButtons()
DComplexMovementFragment.java217 String report = "Couldn't create test report."; in finishTest() local
219 report = mActivity.getTestReport().getContents(); in finishTest()
221 Log.e(TAG, report); in finishTest()
223 resultIntent.putExtra(TestActivity.EXTRA_REPORT, report); in finishTest()
/cts/common/device-side/device-info/src_stub/android/os/
DVintfObject.java14 public static String[] report() { return null; } in report() method in VintfObject
/cts/hostsidetests/statsd/src/android/cts/statsd/atom/
DAtomTestCase.java172 ConfigMetricsReport report = reportList.getReports(0); in getEventMetricDataList() local
175 for (StatsLogReport metric : report.getMetricsList()) { in getEventMetricDataList()
191 ConfigMetricsReport report = reportList.getReports(0); in getGaugeMetricDataList() local
195 report.getMetrics(0).getGaugeMetrics().getDataList()) { in getGaugeMetricDataList()
211 ConfigMetricsReport report = reportList.getReports(0); in getStatsLogReport() local
212 assertTrue(report.hasUidMap()); in getStatsLogReport()
213 assertEquals(1, report.getMetricsCount()); in getStatsLogReport()
214 return report.getMetrics(0); in getStatsLogReport()

12