Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/device/metric/
DJavaCodeCoverageCollector.java124 String testCoveragePath = null; in onTestRunEnd() local
131 testCoveragePath = devicePathMetric.getMeasurements().getSingleString(); in onTestRunEnd()
132 if (testCoveragePath == null) { in onTestRunEnd()
148 if (testCoveragePath != null) { in onTestRunEnd()
149 if (!new File(testCoveragePath).isAbsolute()) { in onTestRunEnd()
150 testCoveragePath = in onTestRunEnd()
151 "/sdcard/googletest/internal_use/" + testCoveragePath; in onTestRunEnd()
153 testCoverage = device.pullFile(testCoveragePath); in onTestRunEnd()
159 testCoveragePath); in onTestRunEnd()