Home
last modified time | relevance | path

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

/test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/
DVtsMultiDeviceTest.java1348 File stdOutFile = FileUtil.createTempFile("vts_python_runner_stdout", ".log"); in doRunTest() local
1351 OutputStream stdOut = new FileOutputStream(stdOutFile); in doRunTest()
1367 if (stdOutFile.length() > 2048) { in doRunTest()
1368 startOffset = stdOutFile.length() - 2048; in doRunTest()
1373 FileUtil.readStringFromFile(stdOutFile, startOffset, 2048))); in doRunTest()
1389 listener.testLog(stdOutFile.getName(), LogDataType.TEXT, in doRunTest()
1390 new FileInputStreamSource(stdOutFile)); in doRunTest()
1393 FileUtil.deleteFile(stdOutFile); in doRunTest()